diff --git a/NEWS.rst b/NEWS.rst index 99f6462d..cbda3876 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -73,8 +73,8 @@ Other Actions Not Blocking Release * API for ensuring max memory ceiling isn't exceeded. * Move off nose for testing. -0.14.0 (not yet released) -========================= +0.14.0 (released 2020-06-13) +============================ Backwards Compatibility Notes ----------------------------- diff --git a/c-ext/python-zstandard.h b/c-ext/python-zstandard.h index 2ec9d401..87d44a32 100644 --- a/c-ext/python-zstandard.h +++ b/c-ext/python-zstandard.h @@ -16,7 +16,7 @@ #include /* Remember to change the string in zstandard/__init__ as well */ -#define PYTHON_ZSTANDARD_VERSION "0.14.0.dev0" +#define PYTHON_ZSTANDARD_VERSION "0.14.0" typedef enum { compressorobj_flush_finish, diff --git a/debian/changelog b/debian/changelog index 5ffe5f9b..b24e7bf6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +python-zstandard (0.14.0) unstable; urgency=low + + * New version. + + -- Gregory Szorc Sat, 13 Jun 2020 12:15:00 -0700 + python-zstandard (0.14.0~dev0-1) unstable; urgency=low * New version. diff --git a/tests/test_module_attributes.py b/tests/test_module_attributes.py index f2e63ee4..c667673b 100644 --- a/tests/test_module_attributes.py +++ b/tests/test_module_attributes.py @@ -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.dev0") + self.assertEqual(zstd.__version__, "0.14.0") def test_constants(self): self.assertEqual(zstd.MAX_COMPRESSION_LEVEL, 22) diff --git a/zstandard/__init__.py b/zstandard/__init__.py index 564b87ee..8f68b554 100644 --- a/zstandard/__init__.py +++ b/zstandard/__init__.py @@ -72,4 +72,4 @@ ) # Keep this in sync with python-zstandard.h. -__version__ = "0.14.0.dev0" +__version__ = "0.14.0"