diff --git a/.release-please-manifest.json b/.release-please-manifest.json index bcd0522..e7ca613 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.6.0" + ".": "0.7.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index ee9bc49..c22f673 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [0.7.0](https://github.com/Polymarket/py-sdk/compare/polymarket-client-v0.6.0...polymarket-client-v0.7.0) (2026-08-13) + + +### Features + +* **errors:** expose typed trading restrictions for engine restarts and restricted modes ([#214](https://github.com/Polymarket/py-sdk/issues/214)) ([c8fb84b](https://github.com/Polymarket/py-sdk/commit/c8fb84bb51e60f790239056be7be0f5cc337d2e0)) +* expose trading approvals state (DEV-565) ([#262](https://github.com/Polymarket/py-sdk/issues/262)) ([1f1bd63](https://github.com/Polymarket/py-sdk/commit/1f1bd63e32351819c89414c76e41b0490cd444c2)) +* **models:** type notification payloads per notification kind ([fcace0e](https://github.com/Polymarket/py-sdk/commit/fcace0e6bd4c5388a3656a11700df70c1510a6ca)) +* surface Poly-RateLimit state on rate-limit errors and via on_rate_limit_update ([#221](https://github.com/Polymarket/py-sdk/issues/221)) ([9fec251](https://github.com/Polymarket/py-sdk/commit/9fec25132d0b98525580650b3089946d3803e7d5)) + + +### Bug Fixes + +* **ci:** resolve release in explicit repository ([#267](https://github.com/Polymarket/py-sdk/issues/267)) ([075b848](https://github.com/Polymarket/py-sdk/commit/075b84864511f23b6ac93f0ac74fdd659abebfe3)) +* **models:** align notification payload contracts ([54d5bc7](https://github.com/Polymarket/py-sdk/commit/54d5bc71b6e4953dc0f3388824b2e86430aabde9)) + ## [0.6.0](https://github.com/Polymarket/py-sdk/compare/polymarket-client-v0.5.0...polymarket-client-v0.6.0) (2026-08-13) diff --git a/pyproject.toml b/pyproject.toml index 9504bef..b7e2e1a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "polymarket-client" -version = "0.6.0" +version = "0.7.0" description = "Official Python client for Polymarket" readme = "README.md" requires-python = ">=3.11" diff --git a/src/polymarket/version.py b/src/polymarket/version.py index b2fa9dc..63bab1a 100644 --- a/src/polymarket/version.py +++ b/src/polymarket/version.py @@ -5,4 +5,4 @@ try: __version__ = version("polymarket-client") except PackageNotFoundError: - __version__ = "0.6.0" + __version__ = "0.7.0" diff --git a/uv.lock b/uv.lock index 529cae1..2c0570e 100644 --- a/uv.lock +++ b/uv.lock @@ -1088,7 +1088,7 @@ wheels = [ [[package]] name = "polymarket-client" -version = "0.6.0" +version = "0.7.0" source = { editable = "." } dependencies = [ { name = "eth-abi" },