From 0baed2304bbd33fe3f03cf365e5b64b796ace2b2 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 2 Apr 2025 19:12:34 +0000 Subject: [PATCH 1/2] fix!: use descriptive prefixes for enum names that start with otherwise illegal identifiers (#209) --- Gemfile.lock | 2 +- README.md | 2 +- sig/orb/version.rbs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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/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 From 58f7a714af05b90fc4c3eea6f544966d5e59fb59 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 2 Apr 2025 19:12:56 +0000 Subject: [PATCH 2/2] release: 0.1.0-alpha.36 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 12 ++++++++++++ lib/orb/version.rb | 2 +- rbi/lib/orb/version.rbi | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) 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/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