From 5a7f8d077c52e1a3c8b7c2890ab4a3b7a4f260c2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 22 Apr 2026 05:34:20 +0000 Subject: [PATCH] chore(main): release 1.2.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- VERSIONING.md | 2 +- pyproject.toml | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 41ea87d..f6a9e15 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.2.1" + ".": "1.2.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 407f3b8..3d5e767 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,14 @@ 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.2](https://github.com/StatPan/pyjwt-rs/compare/v1.2.1...v1.2.2) (2026-04-22) + + +### CI + +* **release:** fix windows wheel target for publish matrix ([#18](https://github.com/StatPan/pyjwt-rs/issues/18)) ([f2962d9](https://github.com/StatPan/pyjwt-rs/commit/f2962d97c46280a16f044ddca2650cb7326d69c3)) +* **release:** force node24 for release-please action ([#15](https://github.com/StatPan/pyjwt-rs/issues/15)) ([9d4a161](https://github.com/StatPan/pyjwt-rs/commit/9d4a1616c44b004566d19d315d2777f96199d49f)) + ## [1.2.1](https://github.com/StatPan/pyjwt-rs/compare/v1.2.0...v1.2.1) (2026-04-21) diff --git a/Cargo.toml b/Cargo.toml index 54b4680..35a1c88 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyjwt-rs" -version = "1.2.1" +version = "1.2.2" edition = "2024" description = "Rust-backed PyJWT-compatible JWT library for Python" license = "MIT" diff --git a/VERSIONING.md b/VERSIONING.md index 7ad3d33..9d9fd67 100644 --- a/VERSIONING.md +++ b/VERSIONING.md @@ -12,7 +12,7 @@ 현재 기준: -- `pyjwt-rs`: `1.2.1` +- `pyjwt-rs`: `1.2.2` ## 2. Compatibility Version diff --git a/pyproject.toml b/pyproject.toml index d3bea12..f9759d4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "pyjwt-rs" -version = "1.2.1" +version = "1.2.2" description = "Rust-backed PyJWT-compatible JWT library for Python" readme = "README.md" requires-python = ">=3.10"