Skip to content

Commit bd94614

Browse files
committed
global: release 0.15.1
This contains bug fixes for the 3 issues reported so far. Let's get it out the door.
1 parent 4a6d2fb commit bd94614

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

c-ext/python-zstandard.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#endif
2626

2727
/* Remember to change the string in zstandard/__init__ as well */
28-
#define PYTHON_ZSTANDARD_VERSION "0.15.0"
28+
#define PYTHON_ZSTANDARD_VERSION "0.15.1"
2929

3030
typedef enum {
3131
compressorobj_flush_finish,

docs/news.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ Other Actions Not Blocking Release
7474
* API for ensuring max memory ceiling isn't exceeded.
7575
* Move off nose for testing.
7676

77-
0.15.1 (not yet released)
78-
=========================
77+
0.15.1 (released 2020-12-31)
78+
============================
7979

8080
Bug Fixes
8181
---------

rust-ext/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ mod frame_parameters;
1616

1717
use exceptions::ZstdError;
1818

19-
const VERSION: &'static str = "0.15.0";
19+
const VERSION: &'static str = "0.15.1";
2020

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

tests/test_module_attributes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class TestModuleAttributes(unittest.TestCase):
77
def test_version(self):
88
self.assertEqual(zstd.ZSTD_VERSION, (1, 4, 8))
99

10-
self.assertEqual(zstd.__version__, "0.15.0")
10+
self.assertEqual(zstd.__version__, "0.15.1")
1111

1212
def test_features(self):
1313
self.assertIsInstance(zstd.backend_features, set)

zstandard/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
)
8181

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

8585
_MODE_CLOSED = 0
8686
_MODE_READ = 1

0 commit comments

Comments
 (0)