diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f9963500..a696b6a7 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0-alpha.35" + ".": "0.1.0-alpha.36" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 189d65f1..1fb334ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## 0.1.0-alpha.36 (2025-04-02) + +Full Changelog: [v0.1.0-alpha.35...v0.1.0-alpha.36](https://github.com/orbcorp/orb-ruby/compare/v0.1.0-alpha.35...v0.1.0-alpha.36) + +### ⚠ BREAKING CHANGES + +* use descriptive prefixes for enum names that start with otherwise illegal identifiers ([#209](https://github.com/orbcorp/orb-ruby/issues/209)) + +### Bug Fixes + +* use descriptive prefixes for enum names that start with otherwise illegal identifiers ([#209](https://github.com/orbcorp/orb-ruby/issues/209)) ([0baed23](https://github.com/orbcorp/orb-ruby/commit/0baed2304bbd33fe3f03cf365e5b64b796ace2b2)) + ## 0.1.0-alpha.35 (2025-04-02) Full Changelog: [v0.1.0-alpha.34...v0.1.0-alpha.35](https://github.com/orbcorp/orb-ruby/compare/v0.1.0-alpha.34...v0.1.0-alpha.35) diff --git a/Gemfile.lock b/Gemfile.lock index 68d92cb7..155a0290 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - orb-billing (0.1.0.pre.alpha.34) + orb-billing (0.1.0.pre.alpha.35) connection_pool GEM diff --git a/README.md b/README.md index ebefbe1e..2aa5c9b2 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ The underlying REST API documentation can be found on [docs.withorb.com](https:/ To use this gem, install via Bundler by adding the following to your application's `Gemfile`: ```ruby -gem "orb-billing", "~> 0.1.0.pre.alpha.34" +gem "orb-billing", "~> 0.1.0.pre.alpha.35" ``` To fetch an initial copy of the gem: diff --git a/lib/orb/version.rb b/lib/orb/version.rb index f763cdaf..00f39d6f 100644 --- a/lib/orb/version.rb +++ b/lib/orb/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Orb - VERSION = "0.1.0-alpha.35" + VERSION = "0.1.0-alpha.36" end diff --git a/rbi/lib/orb/version.rbi b/rbi/lib/orb/version.rbi index 02031ccd..98ac7da8 100644 --- a/rbi/lib/orb/version.rbi +++ b/rbi/lib/orb/version.rbi @@ -1,5 +1,5 @@ # typed: strong module Orb - VERSION = "0.1.0-alpha.35" + VERSION = "0.1.0-alpha.36" end diff --git a/sig/orb/version.rbs b/sig/orb/version.rbs index dcfeda74..3e1a391d 100644 --- a/sig/orb/version.rbs +++ b/sig/orb/version.rbs @@ -1,3 +1,3 @@ module Orb - VERSION: "0.1.0-alpha.34" + VERSION: "0.1.0-alpha.35" end