diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0cb37986..6c7ce212 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/orb-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/orb-python' + if: github.repository == 'stainless-sdks/orb-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/orb-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 ca2c4e62..43e988c0 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.2.1" + ".": "4.2.2" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 2316f788..de3ff732 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.2.2 (2025-06-29) + +Full Changelog: [v4.2.1...v4.2.2](https://github.com/orbcorp/orb-python/compare/v4.2.1...v4.2.2) + +### Bug Fixes + +* **ci:** correct conditional ([b0e1f19](https://github.com/orbcorp/orb-python/commit/b0e1f199cb2e10484399e0af3604a91e3c7d48bb)) + + +### Chores + +* **ci:** only run for pushes and fork pull requests ([e1cbecc](https://github.com/orbcorp/orb-python/commit/e1cbeccba5d407c8a7314c52e98a8b05c0b0049c)) + ## 4.2.1 (2025-06-26) Full Changelog: [v4.2.0...v4.2.1](https://github.com/orbcorp/orb-python/compare/v4.2.0...v4.2.1) diff --git a/pyproject.toml b/pyproject.toml index 5d55d5d6..b3bdb1fe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "orb-billing" -version = "4.2.1" +version = "4.2.2" description = "The official Python library for the orb API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/src/orb/_version.py b/src/orb/_version.py index eb51929c..cabf5ab9 100644 --- a/src/orb/_version.py +++ b/src/orb/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "orb" -__version__ = "4.2.1" # x-release-please-version +__version__ = "4.2.2" # x-release-please-version