From 43570f3352ea7cd28250e63f6efd87287bd7923e Mon Sep 17 00:00:00 2001 From: Sam Partee Date: Sun, 16 Mar 2025 00:25:17 +0000 Subject: [PATCH 1/4] feat: CI fix --- bin/publish-pypi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/publish-pypi b/bin/publish-pypi index 05bfccb..ef63980 100644 --- a/bin/publish-pypi +++ b/bin/publish-pypi @@ -5,5 +5,5 @@ 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 pip install 'importlib-metadata==7.2.1' +#"$HOME/.rye/self/bin/python3" -m pip install 'importlib-metadata==7.2.1' rye publish --yes --token=$PYPI_TOKEN From 89687f3403b7a4afdc03f3588d5d16b5d8ec9405 Mon Sep 17 00:00:00 2001 From: Sam Partee Date: Sat, 15 Mar 2025 17:32:41 -0700 Subject: [PATCH 2/4] CI fix for pip --- bin/publish-pypi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/publish-pypi b/bin/publish-pypi index 05bfccb..fd47a6c 100644 --- a/bin/publish-pypi +++ b/bin/publish-pypi @@ -5,5 +5,5 @@ 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 pip install 'importlib-metadata==7.2.1' +"$HOME/.rye/self/bin/python3" -m pip3 install 'importlib-metadata==7.2.1' rye publish --yes --token=$PYPI_TOKEN From 4594515bd8c5500adfa6f6c511e86490b314426d Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 17 Mar 2025 14:11:21 +0000 Subject: [PATCH 3/4] fix(ci): ensure pip is always available (#10) --- bin/publish-pypi | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/publish-pypi b/bin/publish-pypi index ef63980..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 pip install 'importlib-metadata==7.2.1' +"$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 From 2d89a62f0b394040d3dd93d90eea0d5d545feeb5 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 17 Mar 2025 14:12:33 +0000 Subject: [PATCH 4/4] release: 0.1.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ pyproject.toml | 2 +- src/oxp/_version.py | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) 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/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