diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0a2272b93..bd314ddba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,6 +17,7 @@ jobs: timeout-minutes: 10 name: lint runs-on: ${{ github.repository == 'stainless-sdks/increase-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }} + if: github.event_name == 'push' || github.event.pull_request.head.repo.fork steps: - uses: actions/checkout@v4 @@ -35,7 +36,7 @@ jobs: run: ./scripts/lint upload: - if: github.repository == 'stainless-sdks/increase-python' + if: github.repository == 'stainless-sdks/increase-python' && (github.event_name == 'push' || github.event.pull_request.head.repo.fork) timeout-minutes: 10 name: upload permissions: @@ -62,6 +63,7 @@ jobs: timeout-minutes: 10 name: test runs-on: ${{ github.repository == 'stainless-sdks/increase-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }} + if: github.event_name == 'push' || github.event.pull_request.head.repo.fork steps: - uses: actions/checkout@v4 diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 655e50d25..b62909048 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.256.1" + ".": "0.256.2" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 246713324..107106630 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 201 openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-a027ea8bf72e85055306ceaf380c0311b8ed5e6e83962de0ccf48f62c85403fc.yml -openapi_spec_hash: 5a69ed697dee32af7deae0c6ebf27377 +openapi_spec_hash: 4e35ead65a06ac0783945b2b213ce83c config_hash: 97774f946585cecb19181a1817870d0b diff --git a/CHANGELOG.md b/CHANGELOG.md index 53d67db47..d4cf3702b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 0.256.2 (2025-06-29) + +Full Changelog: [v0.256.1...v0.256.2](https://github.com/Increase/increase-python/compare/v0.256.1...v0.256.2) + +### Bug Fixes + +* **ci:** correct conditional ([16df604](https://github.com/Increase/increase-python/commit/16df604cf7da3c37ffdfbd8d40a8f0995c612728)) + + +### Chores + +* **ci:** only run for pushes and fork pull requests ([a56c72d](https://github.com/Increase/increase-python/commit/a56c72d15148b87a57631ddcc79c05e9cc35e505)) + ## 0.256.1 (2025-06-26) Full Changelog: [v0.256.0...v0.256.1](https://github.com/Increase/increase-python/compare/v0.256.0...v0.256.1) diff --git a/pyproject.toml b/pyproject.toml index d19a5133b..98681d147 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "increase" -version = "0.256.1" +version = "0.256.2" description = "The official Python library for the increase API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/src/increase/_version.py b/src/increase/_version.py index b72855586..c518685b6 100644 --- a/src/increase/_version.py +++ b/src/increase/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "increase" -__version__ = "0.256.1" # x-release-please-version +__version__ = "0.256.2" # x-release-please-version