From 79e25f64012492bbcdd5bb6dbe178c5156d014cb Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 2 Jun 2025 21:08:27 +0000 Subject: [PATCH 1/3] chore(internal): version bump --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 86ec432c..99becddd 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - orb-billing (0.9.1) + orb-billing (0.10.0) connection_pool GEM From 7eff3fa81e770e512c70c5659e73147e0ce80b1b Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 3 Jun 2025 22:41:25 +0000 Subject: [PATCH 2/3] feat(api): api update --- .stats.yml | 4 ++-- lib/orb/resources/subscriptions.rb | 2 +- rbi/orb/resources/subscriptions.rbi | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.stats.yml b/.stats.yml index 1265d475..854a0355 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 115 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-d513be954ba2cb57489bd048f93790cabb13849f0f04d328a5a15694c99550df.yml -openapi_spec_hash: 0d42694f412abf65defc3f88646a809c +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-028b94908fa562ed9c31c1137078f958f859e79b33b8fddbd64934e1bb4ffd32.yml +openapi_spec_hash: e9a8403fd1da4edf627451a88ba27a55 config_hash: 1e2186b09e57d7d27b6ab5c8e6410b31 diff --git a/lib/orb/resources/subscriptions.rb b/lib/orb/resources/subscriptions.rb index df8161f2..b9083802 100644 --- a/lib/orb/resources/subscriptions.rb +++ b/lib/orb/resources/subscriptions.rb @@ -1357,7 +1357,7 @@ def unschedule_fixed_fee_quantity_updates(subscription_id, params) end # This endpoint can be used to unschedule any pending plan changes on an existing - # subscription. + # subscription. When called, all upcoming plan changes will be unscheduled. # # @overload unschedule_pending_plan_changes(subscription_id, request_options: {}) # diff --git a/rbi/orb/resources/subscriptions.rbi b/rbi/orb/resources/subscriptions.rbi index c308c26b..e40f075c 100644 --- a/rbi/orb/resources/subscriptions.rbi +++ b/rbi/orb/resources/subscriptions.rbi @@ -1436,7 +1436,7 @@ module Orb end # This endpoint can be used to unschedule any pending plan changes on an existing - # subscription. + # subscription. When called, all upcoming plan changes will be unscheduled. sig do params( subscription_id: String, From b0ab3d7852c71070e2000d54817872f2e59a2256 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 3 Jun 2025 22:42:03 +0000 Subject: [PATCH 3/3] release: 0.11.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ README.md | 2 +- lib/orb/version.rb | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 091cfb12..f7014c35 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.10.0" + ".": "0.11.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index c33b61e2..845961d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 0.11.0 (2025-06-03) + +Full Changelog: [v0.10.0...v0.11.0](https://github.com/orbcorp/orb-ruby/compare/v0.10.0...v0.11.0) + +### Features + +* **api:** api update ([7eff3fa](https://github.com/orbcorp/orb-ruby/commit/7eff3fa81e770e512c70c5659e73147e0ce80b1b)) + + +### Chores + +* **internal:** version bump ([79e25f6](https://github.com/orbcorp/orb-ruby/commit/79e25f64012492bbcdd5bb6dbe178c5156d014cb)) + ## 0.10.0 (2025-06-02) Full Changelog: [v0.9.1...v0.10.0](https://github.com/orbcorp/orb-ruby/compare/v0.9.1...v0.10.0) diff --git a/README.md b/README.md index 95183e75..f9350505 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.10.0" +gem "orb-billing", "~> 0.11.0" ``` diff --git a/lib/orb/version.rb b/lib/orb/version.rb index 75f05a0c..6c9bd776 100644 --- a/lib/orb/version.rb +++ b/lib/orb/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Orb - VERSION = "0.10.0" + VERSION = "0.11.0" end