diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 810bd93..043138f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,12 +1,14 @@ name: CI on: push: - branches-ignore: - - 'generated' - - 'codegen/**' - - 'integrated/**' - - 'stl-preview-head/**' - - 'stl-preview-base/**' + branches: + - '**' + - '!integrated/**' + - '!stl-preview-head/**' + - '!stl-preview-base/**' + - '!generated' + - '!codegen/**' + - 'codegen/stl/**' pull_request: branches-ignore: - 'stl-preview-head/**' @@ -22,7 +24,8 @@ jobs: runs-on: ${{ github.repository == 'stainless-sdks/courier-ruby' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }} if: |- github.repository == 'stainless-sdks/courier-ruby' && - (github.event_name == 'push' || github.event.pull_request.head.repo.fork) + (github.event_name == 'push' || github.event.pull_request.head.repo.fork) && + (github.event_name != 'push' || github.event.head_commit.message != 'codegen metadata') steps: - uses: actions/checkout@v6 - name: Set up Ruby diff --git a/.gitignore b/.gitignore index 3d26cee..fc9eb28 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ .idea/ .ignore .prism.log +.stdy.log .ruby-lsp/ .yardoc/ bin/tapioca diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 90eeef6..7c37fb1 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.8.0" + ".": "4.8.1" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 75c1218..005d7f3 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 83 openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/courier%2Fcourier-19330fca8fa9bbae835ec9d9f83b37b3df364d9b462090b9623bfc9b6eae99c2.yml openapi_spec_hash: 0bc6889464c9ac2542b4837f569c1837 -config_hash: 1ae49ed522c8423378d9463cdd0fb880 +config_hash: c501fe3838c270e9b44dd5dc4b7fca70 diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a9cc9c..2fc58a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## 4.8.1 (2026-03-25) + +Full Changelog: [v4.8.0...v4.8.1](https://github.com/trycourier/courier-ruby/compare/v4.8.0...v4.8.1) + +### Chores + +* **ci:** skip lint on metadata-only changes ([6a262f2](https://github.com/trycourier/courier-ruby/commit/6a262f279d4dffe5339d3f071c67212aaf7fb205)) +* **internal:** tweak CI branches ([aca7fe9](https://github.com/trycourier/courier-ruby/commit/aca7fe942700faccfa4a6f39fde81db29c3cbd11)) +* **internal:** update gitignore ([cb88a85](https://github.com/trycourier/courier-ruby/commit/cb88a854b0fa3dd37ac96b42460112177bb3f71d)) + + +### Documentation + +* sync README from mintlify-docs (2026-03-23 19:54 UTC) ([#79](https://github.com/trycourier/courier-ruby/issues/79)) ([4b83d99](https://github.com/trycourier/courier-ruby/commit/4b83d99126c8ddedf8e137cfc683bc6be998cc35)) + ## 4.8.0 (2026-03-12) Full Changelog: [v4.7.1...v4.8.0](https://github.com/trycourier/courier-ruby/compare/v4.7.1...v4.8.0) diff --git a/Gemfile.lock b/Gemfile.lock index cfed93b..60266d6 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - trycourier (4.8.0) + trycourier (4.8.1) cgi connection_pool diff --git a/lib/courier/version.rb b/lib/courier/version.rb index c802e4c..251a2cb 100644 --- a/lib/courier/version.rb +++ b/lib/courier/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Courier - VERSION = "4.8.0" + VERSION = "4.8.1" end