From 1ce7849036d0aabfba3c3d2f93897f5a851ed1ae Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 2 Apr 2025 17:33:33 +0000 Subject: [PATCH 1/4] chore(internal): version bump (#202) --- README.md | 2 +- sig/orb/version.rbs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5838b483..19e65303 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", "~> 0.1.0.pre.alpha.31" +gem "orb", "~> 0.1.0.pre.alpha.32" ``` To fetch an initial copy of the gem: diff --git a/sig/orb/version.rbs b/sig/orb/version.rbs index 204a657b..8f743dc7 100644 --- a/sig/orb/version.rbs +++ b/sig/orb/version.rbs @@ -1,3 +1,3 @@ module Orb - VERSION: "0.1.0-alpha.31" + VERSION: "0.1.0-alpha.32" end From ec5d10ab6ac1cd6429a50b888aa18c172b46c161 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 2 Apr 2025 17:40:48 +0000 Subject: [PATCH 2/4] codegen metadata --- .stats.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.stats.yml b/.stats.yml index 037b2232..0233639a 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 103 openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-95a3d7780935a38e0cf076d4ad2d68bd1a5641bced8398d972db2e92751d364a.yml openapi_spec_hash: 9ebe818c4ad4f2d9c4e473b5192d7544 -config_hash: ec4f1e02d3528e3a93a73e33bca17c2a +config_hash: 8012272ce207c864d8b96fefeefc378c From f84bfecd675818d145d86039dce348b2dd3a945c Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 2 Apr 2025 18:08:47 +0000 Subject: [PATCH 3/4] feat(api): manual updates (#204) --- .solargraph.yml | 2 +- .stats.yml | 2 +- Gemfile.lock | 4 ++-- README.md | 6 +++--- orb.gemspec => orb-billing.gemspec | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) rename orb.gemspec => orb-billing.gemspec (88%) diff --git a/.solargraph.yml b/.solargraph.yml index 74911df2..4738eea1 100644 --- a/.solargraph.yml +++ b/.solargraph.yml @@ -5,6 +5,6 @@ include: - 'Rakefile' - 'examples/**/*.rb' - 'lib/**/*.rb' - - 'test/orb/test_helper.rb' + - 'test/orb-billing/test_helper.rb' exclude: - 'rbi/**/*' diff --git a/.stats.yml b/.stats.yml index 0233639a..f2253470 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 103 openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-95a3d7780935a38e0cf076d4ad2d68bd1a5641bced8398d972db2e92751d364a.yml openapi_spec_hash: 9ebe818c4ad4f2d9c4e473b5192d7544 -config_hash: 8012272ce207c864d8b96fefeefc378c +config_hash: 3dc5bc1df028fc7301fb2ada9846f038 diff --git a/Gemfile.lock b/Gemfile.lock index 8713e6d5..f53d826b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - orb (0.1.0.pre.alpha.32) + orb-billing (0.1.0.pre.alpha.32) connection_pool GEM @@ -181,7 +181,7 @@ DEPENDENCIES minitest-hooks minitest-proveit minitest-rg - orb! + orb-billing! rake rbs redcarpet diff --git a/README.md b/README.md index 19e65303..f194aa55 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ The Orb Ruby library provides convenient access to the Orb REST API from any Rub ## Documentation -Documentation for released of this gem can be found [on RubyDoc](https://gemdocs.org/gems/orb). +Documentation for released of this gem can be found [on RubyDoc](https://gemdocs.org/gems/orb-billing). The underlying REST API documentation can be found on [docs.withorb.com](https://docs.withorb.com/reference/api-reference). @@ -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", "~> 0.1.0.pre.alpha.32" +gem "orb-billing", "~> 0.1.0.pre.alpha.32" ``` To fetch an initial copy of the gem: @@ -26,7 +26,7 @@ bundle install ```ruby require "bundler/setup" -require "orb" +require "orb-billing" orb = Orb::Client.new( api_key: "My API Key" # defaults to ENV["ORB_API_KEY"] diff --git a/orb.gemspec b/orb-billing.gemspec similarity index 88% rename from orb.gemspec rename to orb-billing.gemspec index 356dc339..af5cc9bb 100644 --- a/orb.gemspec +++ b/orb-billing.gemspec @@ -3,7 +3,7 @@ require_relative "lib/orb/version" Gem::Specification.new do |s| - s.name = "orb" + s.name = "orb-billing" s.version = Orb::VERSION s.summary = "Ruby library to access the Orb API" s.authors = ["Orb"] @@ -12,7 +12,7 @@ Gem::Specification.new do |s| s.extra_rdoc_files = ["README.md"] s.required_ruby_version = ">= 3.0.0" s.add_dependency "connection_pool" - s.homepage = "https://gemdocs.org/gems/orb" + s.homepage = "https://gemdocs.org/gems/orb-billing" s.metadata["homepage_uri"] = s.homepage s.metadata["source_code_uri"] = "https://github.com/orbcorp/orb-ruby" s.metadata["rubygems_mfa_required"] = false.to_s From 5d4566e36a99a4bd6b6c939e0f3410200cea1292 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 2 Apr 2025 18:09:09 +0000 Subject: [PATCH 4/4] release: 0.1.0-alpha.33 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ lib/orb/version.rb | 2 +- rbi/lib/orb/version.rbi | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2ce25fec..ff4f9a50 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0-alpha.32" + ".": "0.1.0-alpha.33" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b7a55cb..3ca7b2f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 0.1.0-alpha.33 (2025-04-02) + +Full Changelog: [v0.1.0-alpha.32...v0.1.0-alpha.33](https://github.com/orbcorp/orb-ruby/compare/v0.1.0-alpha.32...v0.1.0-alpha.33) + +### Features + +* **api:** manual updates ([#204](https://github.com/orbcorp/orb-ruby/issues/204)) ([f84bfec](https://github.com/orbcorp/orb-ruby/commit/f84bfecd675818d145d86039dce348b2dd3a945c)) + + +### Chores + +* **internal:** version bump ([#202](https://github.com/orbcorp/orb-ruby/issues/202)) ([1ce7849](https://github.com/orbcorp/orb-ruby/commit/1ce7849036d0aabfba3c3d2f93897f5a851ed1ae)) + ## 0.1.0-alpha.32 (2025-04-02) Full Changelog: [v0.1.0-alpha.31...v0.1.0-alpha.32](https://github.com/orbcorp/orb-ruby/compare/v0.1.0-alpha.31...v0.1.0-alpha.32) diff --git a/lib/orb/version.rb b/lib/orb/version.rb index f6beec54..67610d05 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.32" + VERSION = "0.1.0-alpha.33" end diff --git a/rbi/lib/orb/version.rbi b/rbi/lib/orb/version.rbi index 1b45b86c..c77c4eb9 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.32" + VERSION = "0.1.0-alpha.33" end