Skip to content

Commit 7a77a75

Browse files
committed
global: release 0.25.0
1 parent 7935539 commit 7a77a75

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
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.25.0-pre"
3+
version = "0.25.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.25.0.dev0"
34+
#define PYTHON_ZSTANDARD_VERSION "0.25.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.25.0) unstable; urgency=low
22

33
* New version.
44

5-
-- Gregory Szorc <[email protected]> Sun, 17 Aug 2025 12:00:00 -0700
5+
-- Gregory Szorc <[email protected]> Sun, 14 Sep 2025 12:00:00 -0700
66

77
python-zstandard (0.24.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.25.0 (not yet released)
8-
=========================
7+
0.25.0 (released 2025-09-14)
8+
============================
99

1010
* PyO3 Rust created upgraded from 0.24 to 0.25. (#273)
1111
* We now use ``Py_REFCNT(obj)`` instead of accessing ``(*obj)->ob_refcnt`` directly.

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

3737
#[pymodule(gil_used = false)]
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.25.0.dev0")
10+
self.assertEqual(zstd.__version__, "0.25.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
@@ -87,7 +87,7 @@
8787
)
8888

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

9292
_MODE_CLOSED = 0
9393
_MODE_READ = 1

0 commit comments

Comments
 (0)