Skip to content

Commit 80c3142

Browse files
committed
global: change release to 0.19.0
Let's do a release. Main impetus for this is to produce 3.11 wheels. But there's some other changes worth shipping.
1 parent 81f683e commit 80c3142

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.19.0-pre"
3+
version = "0.19.0"
44
authors = ["Gregory Szorc <[email protected]>"]
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.19.0.dev0"
34+
#define PYTHON_ZSTANDARD_VERSION "0.19.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.19.0~dev0-1) unstable; urgency=low
1+
python-zstandard (0.19.0) unstable; urgency=low
22

33
* New version.
44

5-
-- Gregory Szorc <[email protected]> Tue, 21 Jun 2022 18:05:00 -0700
5+
-- Gregory Szorc <[email protected]> Sat, 29 Oct 2022 18:05:00 -0700
66

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

docs/news.rst

Lines changed: 2 additions & 2 deletions
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.19.0 (not yet released)
83-
=========================
82+
0.19.0 (released 2022-10-29)
83+
============================
8484

8585
Bug Fixes
8686
---------

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.19.0.dev0";
35+
const VERSION: &'static str = "0.19.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, 2))
99

10-
self.assertEqual(zstd.__version__, "0.19.0.dev0")
10+
self.assertEqual(zstd.__version__, "0.19.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.19.0.dev0"
83+
__version__ = "0.19.0"
8484

8585
_MODE_CLOSED = 0
8686
_MODE_READ = 1

0 commit comments

Comments
 (0)