Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.0-b3"
".": "0.1.0-b4"
}
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [0.1.0-b4](https://github.com/Polymarket/py-sdk/compare/polymarket-client-v0.1.0-b3...polymarket-client-v0.1.0-b4) (2026-06-04)


### Bug Fixes

* **gamma:** drop tag/series request params not honored upstream ([0e6c8f0](https://github.com/Polymarket/py-sdk/commit/0e6c8f0d11c21f93b9355b3f28623591481b37f2))
* **gamma:** drop tag/series response fields not populated upstream ([24ff6f9](https://github.com/Polymarket/py-sdk/commit/24ff6f9ce20f53b46c2e84083739ab9b8ee5bf57))


### Documentation

* fix get_market examples ([86c6606](https://github.com/Polymarket/py-sdk/commit/86c660685e9231bfa52d4e089e4d4a743f9f2f0f))
* fix get_market examples ([4c893c9](https://github.com/Polymarket/py-sdk/commit/4c893c9327e2b89a8c3c5e52d30f888c9b80e748))

## [0.1.0-b3](https://github.com/Polymarket/py-sdk/compare/polymarket-client-v0.1.0-b2...polymarket-client-v0.1.0-b3) (2026-05-26)


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "polymarket-client"
version = "0.1.0b3"
version = "0.1.0-b4"
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Invalid PEP 440 version string breaks Python packaging

High Severity

The version changed from the valid PEP 440 format "0.1.0b3" (no hyphen) to "0.1.0-b4" (with hyphen). The hyphenated form is not PEP 440 compliant — pre-release segments must be directly appended (e.g., 0.1.0b4). This will cause hatchling builds and pip install to reject or misinterpret the version, effectively breaking package distribution.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit cac293d. Configure here.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Dev fallback version stale

Medium Severity

pyproject.toml was bumped to the new beta, but the PackageNotFoundError fallback in version.py still reports 0.1.0b3. Editable or non-installed runs expose the wrong __version__ via polymarket.__version__ until metadata is present.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 2778c6b. Configure here.

description = "Official Python client for Polymarket"
readme = "README.md"
requires-python = ">=3.11"
Expand Down