Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ jobs:
lint:
name: lint
runs-on: ubuntu-latest


steps:
- uses: actions/checkout@v4
- name: Set up Ruby
Expand All @@ -29,7 +27,6 @@ jobs:
test:
name: test
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Ruby
Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.1"
".": "0.1.2"
}
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ GIT
PATH
remote: .
specs:
orb-billing (0.1.0)
orb-billing (0.1.1)
connection_pool

GEM
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
<!-- x-release-please-start-version -->

```ruby
gem "orb-billing", "~> 0.1.0"
gem "orb-billing", "~> 0.1.2"
```

<!-- x-release-please-end -->
Expand Down
2 changes: 1 addition & 1 deletion lib/orb/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Orb
VERSION = "0.1.1"
VERSION = "0.1.2"
end
8 changes: 7 additions & 1 deletion release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
]
}
Loading