Skip to content

Commit 6806272

Browse files
committed
global: release version 0.15.0
Now seems like as good a time as any to publish a new release.
1 parent e2afedc commit 6806272

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.dev0"
28+
#define PYTHON_ZSTANDARD_VERSION "0.15.0"
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
@@ -73,8 +73,8 @@ Other Actions Not Blocking Release
7373
* API for ensuring max memory ceiling isn't exceeded.
7474
* Move off nose for testing.
7575

76-
0.15.0 (not yet released)
77-
=========================
76+
0.15.0 (released 2020-12-29)
77+
============================
7878

7979
Backwards Compatibility Notes
8080
-----------------------------

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.dev0";
19+
const VERSION: &'static str = "0.15.0";
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.dev0")
10+
self.assertEqual(zstd.__version__, "0.15.0")
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.dev0"
83+
__version__ = "0.15.0"
8484

8585
_MODE_CLOSED = 0
8686
_MODE_READ = 1

0 commit comments

Comments
 (0)