diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f6a9e15..b7298f8 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.2.2" + ".": "1.2.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d5e767..43cf9a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,13 @@ on the **distribution** axis (`pyproject.toml` / `Cargo.toml` version). The `jwt_rs.__version__` field tracks the PyJWT compatibility target separately and is documented in `VERSIONING.md`. +## [1.2.3](https://github.com/StatPan/pyjwt-rs/compare/v1.2.2...v1.2.3) (2026-04-22) + + +### CI + +* **release:** replace release-please action with cli flow ([#20](https://github.com/StatPan/pyjwt-rs/issues/20)) ([bde1a5b](https://github.com/StatPan/pyjwt-rs/commit/bde1a5b48634b217e2d1c79cd0aa7845c5e9b208)) + ## [1.2.2](https://github.com/StatPan/pyjwt-rs/compare/v1.2.1...v1.2.2) (2026-04-22) diff --git a/Cargo.toml b/Cargo.toml index 35a1c88..e399991 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyjwt-rs" -version = "1.2.2" +version = "1.2.3" edition = "2024" description = "Rust-backed PyJWT-compatible JWT library for Python" license = "MIT" diff --git a/VERSIONING.md b/VERSIONING.md index 9d9fd67..2067e80 100644 --- a/VERSIONING.md +++ b/VERSIONING.md @@ -12,7 +12,7 @@ 현재 기준: -- `pyjwt-rs`: `1.2.2` +- `pyjwt-rs`: `1.2.3` ## 2. Compatibility Version diff --git a/pyproject.toml b/pyproject.toml index f9759d4..41e43d2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "pyjwt-rs" -version = "1.2.2" +version = "1.2.3" description = "Rust-backed PyJWT-compatible JWT library for Python" readme = "README.md" requires-python = ">=3.10"