diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eda3c0c..2ff8b8c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: if: github.event_name == 'push' || github.event.pull_request.head.repo.fork steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: diff --git a/.github/workflows/publish-gem.yml b/.github/workflows/publish-gem.yml index 206296e..7c56a95 100644 --- a/.github/workflows/publish-gem.yml +++ b/.github/workflows/publish-gem.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: diff --git a/.github/workflows/release-doctor.yml b/.github/workflows/release-doctor.yml index 9eeea6f..d4e734c 100644 --- a/.github/workflows/release-doctor.yml +++ b/.github/workflows/release-doctor.yml @@ -12,7 +12,7 @@ jobs: if: github.repository == 'openlayer-ai/openlayer-ruby' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next') steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Check release environment run: | diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 31ed71b..b852c1d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.10.2" + ".": "0.10.3" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index ad1dea0..52712ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.10.3 (2026-01-17) + +Full Changelog: [v0.10.2...v0.10.3](https://github.com/openlayer-ai/openlayer-ruby/compare/v0.10.2...v0.10.3) + +### Chores + +* **internal:** update `actions/checkout` version ([0bced62](https://github.com/openlayer-ai/openlayer-ruby/commit/0bced6215cd0974ba5697350885e20699d88c362)) + ## 0.10.2 (2026-01-14) Full Changelog: [v0.10.1...v0.10.2](https://github.com/openlayer-ai/openlayer-ruby/compare/v0.10.1...v0.10.2) diff --git a/Gemfile.lock b/Gemfile.lock index 3f711b9..619432c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - openlayer (0.10.2) + openlayer (0.10.3) cgi connection_pool diff --git a/README.md b/README.md index 22783fe..98f9870 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 "openlayer", "~> 0.10.2" +gem "openlayer", "~> 0.10.3" ``` diff --git a/lib/openlayer/version.rb b/lib/openlayer/version.rb index be1dafc..94fed76 100644 --- a/lib/openlayer/version.rb +++ b/lib/openlayer/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Openlayer - VERSION = "0.10.2" + VERSION = "0.10.3" end