diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6992080f..b2c0c8f7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,8 +12,6 @@ jobs: lint: name: lint runs-on: ubuntu-latest - - steps: - uses: actions/checkout@v4 - name: Set up Ruby @@ -29,7 +27,6 @@ jobs: test: name: test runs-on: ubuntu-latest - steps: - uses: actions/checkout@v4 - name: Set up Ruby diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 5547f83e..cda9cbdf 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.1" + ".": "0.1.2" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 811775c9..c3a3e216 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## 0.1.2 (2025-04-09) + +Full Changelog: [v0.1.1...v0.1.2](https://github.com/orbcorp/orb-ruby/compare/v0.1.1...v0.1.2) + +### Bug Fixes + +* **internal:** update release-please to use ruby strategy for README.md ([#249](https://github.com/orbcorp/orb-ruby/issues/249)) ([f42f700](https://github.com/orbcorp/orb-ruby/commit/f42f700fecdad4e13ba63eea65f5373f70f633b9)) + + +### Chores + +* ensure readme.md is bumped when release please updates versions ([#248](https://github.com/orbcorp/orb-ruby/issues/248)) ([73a8093](https://github.com/orbcorp/orb-ruby/commit/73a8093faa0cb0f464b4dcdd3e4a90b0640225c6)) +* **internal:** expand CI branch coverage ([#250](https://github.com/orbcorp/orb-ruby/issues/250)) ([fa4df80](https://github.com/orbcorp/orb-ruby/commit/fa4df80350ff5e9ec5856f2c39f86b09f73ce219)) +* **internal:** reduce CI branch coverage ([8bed429](https://github.com/orbcorp/orb-ruby/commit/8bed429ae552ce4ca4fecf94ab537194513759f4)) +* **internal:** version bump ([7d6f55c](https://github.com/orbcorp/orb-ruby/commit/7d6f55ccc4e2e107104d4fd99691179d73f2a926)) + ## 0.1.1 (2025-04-08) Full Changelog: [v0.1.0...v0.1.1](https://github.com/orbcorp/orb-ruby/compare/v0.1.0...v0.1.1) diff --git a/Gemfile.lock b/Gemfile.lock index 8763e79a..8587d5c9 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - orb-billing (0.1.0) + orb-billing (0.1.1) connection_pool GEM diff --git a/README.md b/README.md index 624a2a4f..32ec35a8 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application ```ruby -gem "orb-billing", "~> 0.1.0" +gem "orb-billing", "~> 0.1.2" ``` diff --git a/lib/orb/version.rb b/lib/orb/version.rb index bb3eb23f..07dbd1f3 100644 --- a/lib/orb/version.rb +++ b/lib/orb/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Orb - VERSION = "0.1.1" + VERSION = "0.1.2" end diff --git a/release-please-config.json b/release-please-config.json index 3a77f774..f26d46d2 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -60,5 +60,11 @@ } ], "release-type": "ruby", - "version-file": "lib/orb/version.rb" + "version-file": "lib/orb/version.rb", + "extra-files": [ + { + "type": "ruby-readme", + "path": "README.md" + } + ] } \ No newline at end of file