Skip to content

Commit c5833ac

Browse files
committed
global: update version to 0.20.0
Let's do a release to ship the zstd 1.5.2 -> 1.5.4 upgrade.
1 parent 132b600 commit c5833ac

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "python-zstandard"
3-
version = "0.20.0-pre"
3+
version = "0.20.0"
44
authors = ["Gregory Szorc <gregory.szorc@gmail.com>"]
55
edition = "2021"
66
license = "BSD-3-Clause"

c-ext/python-zstandard.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
/* Remember to change the string in zstandard/__init__.py, rust-ext/src/lib.rs,
3333
and debian/changelog as well */
34-
#define PYTHON_ZSTANDARD_VERSION "0.20.0.dev0"
34+
#define PYTHON_ZSTANDARD_VERSION "0.20.0"
3535

3636
typedef enum {
3737
compressorobj_flush_finish,

debian/changelog

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
python-zstandard (0.20.0~dev0-1) unstable; urgency=low
1+
python-zstandard (0.20.0) unstable; urgency=low
22

33
* New version.
44

5-
-- Gregory Szorc <gregory.szorc@gmail.com> Tue, 21 Jun 2022 18:05:00 -0700
5+
-- Gregory Szorc <gregory.szorc@gmail.com> Mon, 20 Feb 2023 13:00:00 -0700
66

77
python-zstandard (0.19.0) unstable; urgency=low
88

docs/news.rst

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

48-
0.20.0 (not yet released)
49-
=========================
48+
0.20.0 (released 2023-02-20)
49+
============================
5050

5151
Backwards Compatibility Notes
5252
-----------------------------

rust-ext/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ use exceptions::ZstdError;
3232

3333
// Remember to change the string in c-ext/python-zstandard.h, zstandard/__init__.py,
3434
// and debian/changelog as well.
35-
const VERSION: &'static str = "0.20.0.dev0";
35+
const VERSION: &'static str = "0.20.0";
3636

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

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, 5, 4))
99

10-
self.assertEqual(zstd.__version__, "0.20.0.dev0")
10+
self.assertEqual(zstd.__version__, "0.20.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, rust-ext/src/lib.rs, and debian/changelog.
83-
__version__ = "0.20.0.dev0"
83+
__version__ = "0.20.0"
8484

8585
_MODE_CLOSED = 0
8686
_MODE_READ = 1

0 commit comments

Comments
 (0)