Skip to content

Commit 9223924

Browse files
committed
global: release 0.24.0
Let's get this overdue release out the door.
1 parent b63f21e commit 9223924

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
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.24.0-pre"
3+
version = "0.24.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.24.0.dev0"
34+
#define PYTHON_ZSTANDARD_VERSION "0.24.0"
3535

3636
typedef enum {
3737
compressorobj_flush_finish,

debian/changelog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ python-zstandard (0.24.0) unstable; urgency=low
22

33
* New version.
44

5-
-- Gregory Szorc <[email protected]> Sun, 16 Aug 2024 12:15:00 -0700
5+
-- Gregory Szorc <[email protected]> Sun, 17 Aug 2025 10:00:00 -0700
66

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

docs/news.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
Version History
55
===============
66

7-
0.24.0 (not yet released)
8-
=========================
7+
0.24.0 (released 2025-08-17)
8+
============================
99

1010
Changes
1111
-------

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

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

10-
self.assertEqual(zstd.__version__, "0.24.0.dev0")
10+
self.assertEqual(zstd.__version__, "0.24.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
@@ -85,7 +85,7 @@
8585
)
8686

8787
# Keep this in sync with python-zstandard.h, rust-ext/src/lib.rs, and debian/changelog.
88-
__version__ = "0.24.0.dev0"
88+
__version__ = "0.24.0"
8989

9090
_MODE_CLOSED = 0
9191
_MODE_READ = 1

0 commit comments

Comments
 (0)