Skip to content

Commit e27f2f4

Browse files
committed
global: release 0.23.0
zstd 1.5.6, new wheels, and some other misc changes.
1 parent 490b534 commit e27f2f4

File tree

7 files changed

+9
-10
lines changed

7 files changed

+9
-10
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "python-zstandard"
3-
version = "0.23.0-pre"
3+
version = "0.23.0"
44
authors = ["Gregory Szorc <[email protected]>"]
55
edition = "2021"
66
license = "BSD-3-Clause"

c-ext/python-zstandard.h

+1-1
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.23.0.dev0"
34+
#define PYTHON_ZSTANDARD_VERSION "0.23.0"
3535

3636
typedef enum {
3737
compressorobj_flush_finish,

debian/changelog

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
python-zstandard (0.23.0~dev0-1) unstable; urgency=low
1+
python-zstandard (0.23.0) unstable; urgency=low
22

33
* New version.
44

5-
-- Gregory Szorc <[email protected]> Wed, 1 Nov 2023 18:00:00 -0700
6-
5+
-- Gregory Szorc <[email protected]> Sun, 14 Jul 2024 12:15:00 -0700
76

87
python-zstandard (0.22.0) unstable; urgency=low
98

docs/news.rst

+2-2
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.23.0 (not yet released)
49-
=========================
48+
0.23.0 (released 2024-07-14)
49+
============================
5050

5151
Changes
5252
-------

rust-ext/src/lib.rs

+1-1
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.23.0.dev0";
35+
const VERSION: &'static str = "0.23.0";
3636

3737
#[pymodule]
3838
fn backend_rust(py: Python, module: &Bound<'_, 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, 6))
99

10-
self.assertEqual(zstd.__version__, "0.23.0.dev0")
10+
self.assertEqual(zstd.__version__, "0.23.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, and debian/changelog.
83-
__version__ = "0.23.0.dev0"
83+
__version__ = "0.23.0"
8484

8585
_MODE_CLOSED = 0
8686
_MODE_READ = 1

0 commit comments

Comments
 (0)