Skip to content

Commit ae896b4

Browse files
release: 0.3.1
1 parent 3d4e166 commit ae896b4

File tree

4 files changed

+36
-3
lines changed

4 files changed

+36
-3
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.3.0"
2+
".": "0.3.1"
33
}

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,38 @@
11
# Changelog
22

3+
## 0.3.1 (2025-05-06)
4+
5+
Full Changelog: [v0.3.0...v0.3.1](https://github.com/orbcorp/orb-ruby/compare/v0.3.0...v0.3.1)
6+
7+
### Bug Fixes
8+
9+
* **internal:** fix formatting script for macos ([3d4e166](https://github.com/orbcorp/orb-ruby/commit/3d4e166f77e3e15037d1bd000f249fcb73cd216e))
10+
11+
12+
### Chores
13+
14+
* add generator safe directory ([dc351bd](https://github.com/orbcorp/orb-ruby/commit/dc351bdabe5a44981c8461a5cf8249df075c513f))
15+
* always check if current page is empty in `next_page?` ([eca7722](https://github.com/orbcorp/orb-ruby/commit/eca772296d3bae2ca18fb60afdb7e3b66a8ae6a8))
16+
* **internal:** annotate request options with type aliases in sorbet ([85ddf12](https://github.com/orbcorp/orb-ruby/commit/85ddf1253cab3253c621fe5da2715c4332c88f22))
17+
* **internal:** codegen related update ([43622bc](https://github.com/orbcorp/orb-ruby/commit/43622bc6158b0409520ddafb16b3348b04f133e4))
18+
* **internal:** codegen related update ([4b21f9a](https://github.com/orbcorp/orb-ruby/commit/4b21f9ae7e8b1d36342b6f4e9e01901b6ea662d5))
19+
* **internal:** codegen related update ([143f9a8](https://github.com/orbcorp/orb-ruby/commit/143f9a890045832dc6a4690b098a6f54c3d61cb1))
20+
* **internal:** codegen related update ([25413e1](https://github.com/orbcorp/orb-ruby/commit/25413e1323f09ed82730671f199b7c4b81277230))
21+
* **internal:** codegen related update ([6d43598](https://github.com/orbcorp/orb-ruby/commit/6d43598c8ffca3220257f5cd6c5e0cbaf78a8322))
22+
* loosen rubocop rules that don't always make sense ([5a71c5b](https://github.com/orbcorp/orb-ruby/commit/5a71c5b9dce0d43b9ba5016cdcd0a1fe00c62ee6))
23+
* migrate away from deprecated `JSON#fast_generate` ([6207686](https://github.com/orbcorp/orb-ruby/commit/6207686bfea6cd2504a4a2cc74ca766bc916cb95))
24+
* more accurate type annotations and aliases ([5528e59](https://github.com/orbcorp/orb-ruby/commit/5528e59e7f77d948dcc3942efd7f0dbc1a167215))
25+
* re-export top level models under library namespace ([95cbfd9](https://github.com/orbcorp/orb-ruby/commit/95cbfd9241828bee0e537b69d3a014a5394f8ba3))
26+
* remove Gemfile.lock during bootstrap ([a369d56](https://github.com/orbcorp/orb-ruby/commit/a369d5679a808b24fa88d986898ad0168af90202))
27+
* reorganize type aliases ([22b91f9](https://github.com/orbcorp/orb-ruby/commit/22b91f9837bb3fd5677cb1325f3c221ae80c8663))
28+
* validate request option coercion correctness ([2ba6032](https://github.com/orbcorp/orb-ruby/commit/2ba6032243950cdef75e63ea75dd3865d79bca02))
29+
30+
31+
### Documentation
32+
33+
* illustrate environmental defaults for auth variables ([34613d7](https://github.com/orbcorp/orb-ruby/commit/34613d75cd3baab105f5dc5f0d4f4c7bb1fe1e3e))
34+
* **readme:** fix typo ([9229774](https://github.com/orbcorp/orb-ruby/commit/9229774479cb18ea70941da9652094d4f4b7bfe6))
35+
336
## 0.3.0 (2025-04-25)
437

538
Full Changelog: [v0.2.0...v0.3.0](https://github.com/orbcorp/orb-ruby/compare/v0.2.0...v0.3.0)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
1515
<!-- x-release-please-start-version -->
1616

1717
```ruby
18-
gem "orb-billing", "~> 0.3.0"
18+
gem "orb-billing", "~> 0.3.1"
1919
```
2020

2121
<!-- x-release-please-end -->

lib/orb/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Orb
4-
VERSION = "0.3.0"
4+
VERSION = "0.3.1"
55
end

0 commit comments

Comments
 (0)