diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 106f992f..14f0e673 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/finch-ruby' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }} + if: github.event_name == 'push' || github.event.pull_request.head.repo.fork steps: - uses: actions/checkout@v4 @@ -33,6 +34,7 @@ jobs: timeout-minutes: 10 name: test runs-on: ${{ github.repository == 'stainless-sdks/finch-ruby' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }} + if: github.event_name == 'push' || github.event.pull_request.head.repo.fork steps: - uses: actions/checkout@v4 - name: Set up Ruby diff --git a/.release-please-manifest.json b/.release-please-manifest.json index fac14074..7c31fce2 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0-alpha.20" + ".": "0.1.0-alpha.21" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index ed2c055f..6604d3bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 0.1.0-alpha.21 (2025-06-27) + +Full Changelog: [v0.1.0-alpha.20...v0.1.0-alpha.21](https://github.com/Finch-API/finch-api-ruby/compare/v0.1.0-alpha.20...v0.1.0-alpha.21) + +### Bug Fixes + +* **ci:** release-doctor — report correct token name ([2e72b42](https://github.com/Finch-API/finch-api-ruby/commit/2e72b425a9ef10c3a8d5a27779c1d57fb4641b9a)) + + +### Chores + +* **ci:** only run for pushes and fork pull requests ([bdaaaf0](https://github.com/Finch-API/finch-api-ruby/commit/bdaaaf064eb6be39ef8749144d75677ecb006309)) +* **internal:** version bump ([99e73b3](https://github.com/Finch-API/finch-api-ruby/commit/99e73b3937ff0f4b916278c4b8c41d32efa691c7)) + ## 0.1.0-alpha.20 (2025-06-18) Full Changelog: [v0.1.0-alpha.19...v0.1.0-alpha.20](https://github.com/Finch-API/finch-api-ruby/compare/v0.1.0-alpha.19...v0.1.0-alpha.20) diff --git a/Gemfile.lock b/Gemfile.lock index 61d5822b..bb1b626c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - finch-api (0.1.0.pre.alpha.19) + finch-api (0.1.0.pre.alpha.20) connection_pool GEM diff --git a/README.md b/README.md index 0e9e2e41..f7d10cd7 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ To use this gem, install via Bundler by adding the following to your application ```ruby -gem "finch-api", "~> 0.1.0.pre.alpha.20" +gem "finch-api", "~> 0.1.0.pre.alpha.21" ``` diff --git a/bin/check-release-environment b/bin/check-release-environment index 75a04a56..c05436e8 100644 --- a/bin/check-release-environment +++ b/bin/check-release-environment @@ -3,7 +3,7 @@ errors=() if [ -z "${GEM_HOST_API_KEY}" ]; then - errors+=("The FINCH_GEM_HOST_API_KEY secret has not been set. Please set it in either this repository's secrets or your organization secrets") + errors+=("The GEM_HOST_API_KEY secret has not been set. Please set it in either this repository's secrets or your organization secrets") fi lenErrors=${#errors[@]} diff --git a/lib/finch_api/version.rb b/lib/finch_api/version.rb index cc171f46..25c716af 100644 --- a/lib/finch_api/version.rb +++ b/lib/finch_api/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module FinchAPI - VERSION = "0.1.0.pre.alpha.20" + VERSION = "0.1.0.pre.alpha.21" end