diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 546cbbef..2c0ecf6a 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/mixedbread-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/mixedbread-python' + if: github.repository == 'stainless-sdks/mixedbread-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/mixedbread-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 3b07edf5..f80776a4 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.13.1" + ".": "0.13.2" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 116640b3..dbfcf8d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 0.13.2 (2025-06-30) + +Full Changelog: [v0.13.1...v0.13.2](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.13.1...v0.13.2) + +### Bug Fixes + +* **ci:** correct conditional ([f56e421](https://github.com/mixedbread-ai/mixedbread-python/commit/f56e4217007685c24bb5e356b669dda48aace096)) + + +### Chores + +* **ci:** only run for pushes and fork pull requests ([915384d](https://github.com/mixedbread-ai/mixedbread-python/commit/915384dc3a436c0b16f000d52caee78b6f155091)) + ## 0.13.1 (2025-06-27) Full Changelog: [v0.13.0...v0.13.1](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.13.0...v0.13.1) diff --git a/pyproject.toml b/pyproject.toml index ba2411a3..41a2114a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "mixedbread" -version = "0.13.1" +version = "0.13.2" description = "The official Python library for the Mixedbread API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/src/mixedbread/_version.py b/src/mixedbread/_version.py index aa389075..405a4a61 100644 --- a/src/mixedbread/_version.py +++ b/src/mixedbread/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "mixedbread" -__version__ = "0.13.1" # x-release-please-version +__version__ = "0.13.2" # x-release-please-version