diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c7159c1..3d2ac0b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.2" + ".": "0.1.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e0920e..c7305d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 0.1.0 (2025-03-17) + +Full Changelog: [v0.0.2...v0.1.0](https://github.com/OpenExecProtocol/oxp-python/compare/v0.0.2...v0.1.0) + +### Features + +* CI fix ([43570f3](https://github.com/OpenExecProtocol/oxp-python/commit/43570f3352ea7cd28250e63f6efd87287bd7923e)) + + +### Bug Fixes + +* **ci:** ensure pip is always available ([#10](https://github.com/OpenExecProtocol/oxp-python/issues/10)) ([4594515](https://github.com/OpenExecProtocol/oxp-python/commit/4594515bd8c5500adfa6f6c511e86490b314426d)) + ## 0.0.2 (2025-03-15) Full Changelog: [v0.0.1-alpha.1...v0.0.2](https://github.com/OpenExecProtocol/oxp-python/compare/v0.0.1-alpha.1...v0.0.2) diff --git a/bin/publish-pypi b/bin/publish-pypi index 05bfccb..ebebf91 100644 --- a/bin/publish-pypi +++ b/bin/publish-pypi @@ -5,5 +5,6 @@ mkdir -p dist rye build --clean # Patching importlib-metadata version until upstream library version is updated # https://github.com/pypa/twine/issues/977#issuecomment-2189800841 +"$HOME/.rye/self/bin/python3" -m ensurepip "$HOME/.rye/self/bin/python3" -m pip install 'importlib-metadata==7.2.1' rye publish --yes --token=$PYPI_TOKEN diff --git a/pyproject.toml b/pyproject.toml index 284e98a..5b09de5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "oxp" -version = "0.0.2" +version = "0.1.0" description = "The official Python library for the oxp API" dynamic = ["readme"] license = "MIT" diff --git a/src/oxp/_version.py b/src/oxp/_version.py index 06acd08..4522cb1 100644 --- a/src/oxp/_version.py +++ b/src/oxp/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "oxp" -__version__ = "0.0.2" # x-release-please-version +__version__ = "0.1.0" # x-release-please-version