diff --git a/.changelog/gentle-eagles-whisper.md b/.changelog/gentle-eagles-whisper.md deleted file mode 100644 index fb37dfb..0000000 --- a/.changelog/gentle-eagles-whisper.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -pympp: patch ---- - -Defaulted `chain_id` to 4217 (mainnet) in the `tempo()` function, removing the need to pass it explicitly. Updated docs and example code accordingly. diff --git a/.changelog/plain-mules-fix.md b/.changelog/plain-mules-fix.md deleted file mode 100644 index 229651f..0000000 --- a/.changelog/plain-mules-fix.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -pympp: patch ---- - -Added Python 3.11 support by lowering the `requires-python` constraint from `>=3.12` to `>=3.11`, updating tooling targets accordingly, and replacing PEP 695 generic syntax with `TypeVar` for compatibility. diff --git a/CHANGELOG.md b/CHANGELOG.md index 984a168..854cbc0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.5.3 (2026-04-01) + +### Patch Changes + +- Defaulted `chain_id` to 4217 (mainnet) in the `tempo()` function, removing the need to pass it explicitly. Updated docs and example code accordingly. (by @BrendanRyan, [#108](https://github.com/tempoxyz/pympp/pull/108)) +- Added Python 3.11 support by lowering the `requires-python` constraint from `>=3.12` to `>=3.11`, updating tooling targets accordingly, and replacing PEP 695 generic syntax with `TypeVar` for compatibility. (by @BrendanRyan, [#108](https://github.com/tempoxyz/pympp/pull/108)) + ## 0.5.2 (2026-04-01) ### Patch Changes diff --git a/pyproject.toml b/pyproject.toml index c21fe75..4346520 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pympp" -version = "0.5.2" +version = "0.5.3" description = "Python SDK for the Machine Payments Protocol (MPP)" readme = "README.md" requires-python = ">=3.11"