Skip to content

Commit

Permalink
global: release 0.12.0
Browse files Browse the repository at this point in the history
Let's get zstd 1.4 shipped in a release.
  • Loading branch information
indygreg committed Sep 16, 2019
1 parent 8434b41 commit bfa24a8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ Other Actions Not Blocking Release
* API for ensuring max memory ceiling isn't exceeded.
* Move off nose for testing.

0.12.0 (not yet released)
=========================
0.12.0 (released 2019-09-15)
============================

Backwards Compatibility Notes
-----------------------------
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.12.0.dev0"
#define PYTHON_ZSTANDARD_VERSION "0.12.0"

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 @@ -14,7 +14,7 @@ class TestModuleAttributes(unittest.TestCase):
def test_version(self):
self.assertEqual(zstd.ZSTD_VERSION, (1, 4, 3))

self.assertEqual(zstd.__version__, '0.12.0.dev0')
self.assertEqual(zstd.__version__, '0.12.0')

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 @@ -62,4 +62,4 @@
'cext, or cffi' % _module_policy)

# Keep this in sync with python-zstandard.h.
__version__ = '0.12.0.dev0'
__version__ = '0.12.0'

0 comments on commit bfa24a8

Please sign in to comment.