Skip to content

Commit

Permalink
global: release 0.23.0
Browse files Browse the repository at this point in the history
zstd 1.5.6, new wheels, and some other misc changes.
  • Loading branch information
indygreg committed Jul 14, 2024
1 parent 490b534 commit e27f2f4
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "python-zstandard"
version = "0.23.0-pre"
version = "0.23.0"
authors = ["Gregory Szorc <gregory.szorc@gmail.com>"]
edition = "2021"
license = "BSD-3-Clause"
Expand Down
2 changes: 1 addition & 1 deletion c-ext/python-zstandard.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

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

typedef enum {
compressorobj_flush_finish,
Expand Down
5 changes: 2 additions & 3 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
python-zstandard (0.23.0~dev0-1) unstable; urgency=low
python-zstandard (0.23.0) unstable; urgency=low

* New version.

-- Gregory Szorc <gregory.szorc@gmail.com> Wed, 1 Nov 2023 18:00:00 -0700

-- Gregory Szorc <gregory.szorc@gmail.com> Sun, 14 Jul 2024 12:15:00 -0700

python-zstandard (0.22.0) unstable; urgency=low

Expand Down
4 changes: 2 additions & 2 deletions docs/news.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ Other Actions Not Blocking Release
* API for ensuring max memory ceiling isn't exceeded.
* Move off nose for testing.

0.23.0 (not yet released)
=========================
0.23.0 (released 2024-07-14)
============================

Changes
-------
Expand Down
2 changes: 1 addition & 1 deletion rust-ext/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ use exceptions::ZstdError;

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

#[pymodule]
fn backend_rust(py: Python, module: &Bound<'_, PyModule>) -> PyResult<()> {
Expand Down
2 changes: 1 addition & 1 deletion tests/test_module_attributes.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class TestModuleAttributes(unittest.TestCase):
def test_version(self):
self.assertEqual(zstd.ZSTD_VERSION, (1, 5, 6))

self.assertEqual(zstd.__version__, "0.23.0.dev0")
self.assertEqual(zstd.__version__, "0.23.0")

def test_features(self):
self.assertIsInstance(zstd.backend_features, set)
Expand Down
2 changes: 1 addition & 1 deletion zstandard/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
)

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

_MODE_CLOSED = 0
_MODE_READ = 1
Expand Down

0 comments on commit e27f2f4

Please sign in to comment.