diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aea470f67..9d8dc4898 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: run: ./scripts/lint build: - if: github.repository == 'stainless-sdks/runloop-python' && (github.event_name == 'push' || github.event.pull_request.head.repo.fork) + if: github.event_name == 'push' || github.event.pull_request.head.repo.fork timeout-minutes: 10 name: build permissions: @@ -61,12 +61,14 @@ jobs: run: rye build - name: Get GitHub OIDC Token + if: github.repository == 'stainless-sdks/runloop-python' id: github-oidc uses: actions/github-script@v6 with: script: core.setOutput('github_token', await core.getIDToken()); - name: Upload tarball + if: github.repository == 'stainless-sdks/runloop-python' env: URL: https://pkg.stainless.com/s AUTH: ${{ steps.github-oidc.outputs.github_token }} diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2c310a467..c09634347 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.56.1-beta" + ".": "0.56.2" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index d205c5257..33da86b4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.56.2 (2025-08-25) + +Full Changelog: [v0.56.1-beta...v0.56.2](https://github.com/runloopai/api-client-python/compare/v0.56.1-beta...v0.56.2) + +### Chores + +* update github action ([d0a51b8](https://github.com/runloopai/api-client-python/commit/d0a51b81c7cda9e63bc4c6a314effbdfadacd7b2)) + ## 0.56.1-beta (2025-08-21) Full Changelog: [v0.55.2...v0.56.1-beta](https://github.com/runloopai/api-client-python/compare/v0.55.2...v0.56.1-beta) diff --git a/README.md b/README.md index 2392e05e8..7270a5281 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ The REST API documentation can be found on [runloop.ai](https://runloop.ai). The ```sh # install from PyPI -pip install --pre runloop_api_client +pip install runloop_api_client ``` ## Usage @@ -73,7 +73,7 @@ You can enable this by installing `aiohttp`: ```sh # install from PyPI -pip install --pre runloop_api_client[aiohttp] +pip install runloop_api_client[aiohttp] ``` Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`: diff --git a/pyproject.toml b/pyproject.toml index a5b712e75..e81b71342 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "runloop_api_client" -version = "0.56.1-beta" +version = "0.56.2" description = "The official Python library for the runloop API" dynamic = ["readme"] license = "MIT" diff --git a/src/runloop_api_client/_version.py b/src/runloop_api_client/_version.py index b85a0a21b..7ae731aba 100644 --- a/src/runloop_api_client/_version.py +++ b/src/runloop_api_client/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "runloop_api_client" -__version__ = "0.56.1-beta" # x-release-please-version +__version__ = "0.56.2" # x-release-please-version