Skip to content

Commit

Permalink
global: release 0.14.1
Browse files Browse the repository at this point in the history
So we can provide users with Python 3.9 wheels.

Closes #125.
  • Loading branch information
indygreg committed Dec 5, 2020
1 parent af8cdae commit bc39649
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,14 @@ Other Actions Not Blocking Release
* API for ensuring max memory ceiling isn't exceeded.
* Move off nose for testing.

0.14.1 (released 2020-12-05)
============================

Changes
-------

* Python 3.9 wheels are now provided.

0.14.0 (released 2020-06-13)
============================

Expand Down
2 changes: 1 addition & 1 deletion c-ext/python-zstandard.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#include <zdict.h>

/* Remember to change the string in zstandard/__init__ as well */
#define PYTHON_ZSTANDARD_VERSION "0.14.0"
#define PYTHON_ZSTANDARD_VERSION "0.14.1"

typedef enum {
compressorobj_flush_finish,
Expand Down
2 changes: 1 addition & 1 deletion tests/test_module_attributes.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class TestModuleAttributes(TestCase):
def test_version(self):
self.assertEqual(zstd.ZSTD_VERSION, (1, 4, 5))

self.assertEqual(zstd.__version__, "0.14.0")
self.assertEqual(zstd.__version__, "0.14.1")

def test_constants(self):
self.assertEqual(zstd.MAX_COMPRESSION_LEVEL, 22)
Expand Down
2 changes: 1 addition & 1 deletion zstandard/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,4 @@
)

# Keep this in sync with python-zstandard.h.
__version__ = "0.14.0"
__version__ = "0.14.1"

0 comments on commit bc39649

Please sign in to comment.