Skip to content

Commit

Permalink
global: release 0.15.1
Browse files Browse the repository at this point in the history
This contains bug fixes for the 3 issues reported so far. Let's get it out
the door.
  • Loading branch information
indygreg committed Dec 31, 2020
1 parent 4a6d2fb commit bd94614
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion c-ext/python-zstandard.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#endif

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

typedef enum {
compressorobj_flush_finish,
Expand Down
4 changes: 2 additions & 2 deletions docs/news.rst
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ Other Actions Not Blocking Release
* API for ensuring max memory ceiling isn't exceeded.
* Move off nose for testing.

0.15.1 (not yet released)
=========================
0.15.1 (released 2020-12-31)
============================

Bug Fixes
---------
Expand Down
2 changes: 1 addition & 1 deletion rust-ext/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ mod frame_parameters;

use exceptions::ZstdError;

const VERSION: &'static str = "0.15.0";
const VERSION: &'static str = "0.15.1";

py_module_initializer!(backend_rust, |py, m| { init_module(py, m) });

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

self.assertEqual(zstd.__version__, "0.15.0")
self.assertEqual(zstd.__version__, "0.15.1")

def test_features(self):
self.assertIsInstance(zstd.backend_features, set)
Expand Down
2 changes: 1 addition & 1 deletion zstandard/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
)

# Keep this in sync with python-zstandard.h.
__version__ = "0.15.0"
__version__ = "0.15.1"

_MODE_CLOSED = 0
_MODE_READ = 1
Expand Down

0 comments on commit bd94614

Please sign in to comment.