From 9cf8a1a17fcd542130b6b3d47fa236be216e8cef Mon Sep 17 00:00:00 2001 From: brendanjryan <1572504+brendanjryan@users.noreply.github.com> Date: Thu, 9 Apr 2026 02:13:56 +0000 Subject: [PATCH] chore: release `v0.6.1` --- .changelog/dull-frogs-paint.md | 5 ----- .changelog/lively-hawks-bark.md | 5 ----- CHANGELOG.md | 7 +++++++ pyproject.toml | 2 +- 4 files changed, 8 insertions(+), 11 deletions(-) delete mode 100644 .changelog/dull-frogs-paint.md delete mode 100644 .changelog/lively-hawks-bark.md diff --git a/.changelog/dull-frogs-paint.md b/.changelog/dull-frogs-paint.md deleted file mode 100644 index 97e6cb1..0000000 --- a/.changelog/dull-frogs-paint.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -pympp: patch ---- - -Cached Tempo chain IDs per RPC URL to avoid redundant `eth_chainId` calls. Also parallelized `eth_getTransactionCount` and `eth_gasPrice` fetches using `asyncio.gather`. diff --git a/.changelog/lively-hawks-bark.md b/.changelog/lively-hawks-bark.md deleted file mode 100644 index f56db27..0000000 --- a/.changelog/lively-hawks-bark.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -pympp: patch ---- - -Replaced `eth_sendRawTransaction` + polling loop with `eth_sendRawTransactionSync` in Tempo's verify flow, eliminating the separate receipt polling step and extracting the transaction hash directly from the receipt response. diff --git a/CHANGELOG.md b/CHANGELOG.md index 98911e4..6b55d4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.6.1 (2026-04-09) + +### Patch Changes + +- Cached Tempo chain IDs per RPC URL to avoid redundant `eth_chainId` calls. Also parallelized `eth_getTransactionCount` and `eth_gasPrice` fetches using `asyncio.gather`. (by @BrendanRyan, [#115](https://github.com/tempoxyz/pympp/pull/115)) +- Replaced `eth_sendRawTransaction` + polling loop with `eth_sendRawTransactionSync` in Tempo's verify flow, eliminating the separate receipt polling step and extracting the transaction hash directly from the receipt response. (by @BrendanRyan, [#115](https://github.com/tempoxyz/pympp/pull/115)) + ## 0.6.0 (2026-04-07) ### Minor Changes diff --git a/pyproject.toml b/pyproject.toml index 12b1858..42bebe5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pympp" -version = "0.6.0" +version = "0.6.1" description = "Python SDK for the Machine Payments Protocol (MPP)" readme = "README.md" requires-python = ">=3.11"