Skip to content

Commit ba50cee

Browse files
committed
global: update version to 0.16.0 and release
It's been a while and we should get a release out.
1 parent f0c6f93 commit ba50cee

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

c-ext/python-zstandard.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#endif
3131

3232
/* Remember to change the string in zstandard/__init__.py, rust-ext/src/lib.rs as well */
33-
#define PYTHON_ZSTANDARD_VERSION "0.16.0.dev0"
33+
#define PYTHON_ZSTANDARD_VERSION "0.16.0"
3434

3535
typedef enum {
3636
compressorobj_flush_finish,

docs/news.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ Other Actions Not Blocking Release
7979
* API for ensuring max memory ceiling isn't exceeded.
8080
* Move off nose for testing.
8181

82-
0.16.0 (not yet released)
83-
=========================
82+
0.16.0 (released 2021-10-16)
83+
============================
8484

8585
Backwards Compatibility Notes
8686
-----------------------------

rust-ext/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ mod zstd_safe;
3232

3333
use exceptions::ZstdError;
3434

35-
const VERSION: &'static str = "0.16.0.dev0";
35+
const VERSION: &'static str = "0.16.0";
3636

3737
#[pymodule]
3838
fn backend_rust(py: Python, module: &PyModule) -> PyResult<()> {

tests/test_module_attributes.py

+1-1
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, 5, 0))
99

10-
self.assertEqual(zstd.__version__, "0.16.0.dev0")
10+
self.assertEqual(zstd.__version__, "0.16.0")
1111

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

zstandard/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
)
8181

8282
# Keep this in sync with python-zstandard.h, rust-ext/src/lib.rs.
83-
__version__ = "0.16.0.dev0"
83+
__version__ = "0.16.0"
8484

8585
_MODE_CLOSED = 0
8686
_MODE_READ = 1

0 commit comments

Comments
 (0)