Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.0-alpha.32"
".": "0.1.0-alpha.33"
}
2 changes: 1 addition & 1 deletion .solargraph.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ include:
- 'Rakefile'
- 'examples/**/*.rb'
- 'lib/**/*.rb'
- 'test/orb/test_helper.rb'
- 'test/orb-billing/test_helper.rb'
exclude:
- 'rbi/**/*'
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -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: 3dc5bc1df028fc7301fb2ada9846f038
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -181,7 +181,7 @@ DEPENDENCIES
minitest-hooks
minitest-proveit
minitest-rg
orb!
orb-billing!
rake
rbs
redcarpet
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand All @@ -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-billing", "~> 0.1.0.pre.alpha.32"
```

To fetch an initial copy of the gem:
Expand All @@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion lib/orb/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Orb
VERSION = "0.1.0-alpha.32"
VERSION = "0.1.0-alpha.33"
end
4 changes: 2 additions & 2 deletions orb.gemspec → orb-billing.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
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"]
s.email = "team@withorb.com"
s.files = Dir["lib/**/*.rb", "rbi/**/*.rbi", "sig/**/*.rbs", "manifest.yaml"]
s.extra_rdoc_files = ["README.md"]
s.required_ruby_version = ">= 3.0.0"

Check warning on line 13 in orb-billing.gemspec

View workflow job for this annotation

GitHub Actions / lint

Gemspec/RequiredRubyVersion: `required_ruby_version` and `TargetRubyVersion` (3.1, which may be specified in .rubocop.yml) should be equal.
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
Expand Down
2 changes: 1 addition & 1 deletion rbi/lib/orb/version.rbi
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# typed: strong

module Orb
VERSION = "0.1.0-alpha.32"
VERSION = "0.1.0-alpha.33"
end
2 changes: 1 addition & 1 deletion sig/orb/version.rbs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Orb
VERSION: "0.1.0-alpha.31"
VERSION: "0.1.0-alpha.32"
end
Loading