From 6cdd4cd0fa6e0b69189bb3604a247b96fc39ed87 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 27 Jun 2025 15:16:57 +0000 Subject: [PATCH 1/2] fix: sorbet type annotation on client's `environ` settings --- rbi/lithic/client.rbi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rbi/lithic/client.rbi b/rbi/lithic/client.rbi index cfcb9105..c722f9c4 100644 --- a/rbi/lithic/client.rbi +++ b/rbi/lithic/client.rbi @@ -121,7 +121,7 @@ module Lithic sig do params( api_key: T.nilable(String), - environment: NilClass, + environment: T.nilable(T.any(Symbol, String)), base_url: T.nilable(String), max_retries: Integer, timeout: Float, From 9230a6dab94e5f7066eceaac943643ccc741e002 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 27 Jun 2025 15:17:16 +0000 Subject: [PATCH 2/2] release: 0.1.0-alpha.36 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ Gemfile.lock | 2 +- README.md | 2 +- lib/lithic/version.rb | 2 +- 5 files changed, 12 insertions(+), 4 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 c6519e8d..811fc350 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.1.0-alpha.36 (2025-06-27) + +Full Changelog: [v0.1.0-alpha.35...v0.1.0-alpha.36](https://github.com/lithic-com/lithic-ruby/compare/v0.1.0-alpha.35...v0.1.0-alpha.36) + +### Bug Fixes + +* sorbet type annotation on client's `environ` settings ([6cdd4cd](https://github.com/lithic-com/lithic-ruby/commit/6cdd4cd0fa6e0b69189bb3604a247b96fc39ed87)) + ## 0.1.0-alpha.35 (2025-06-27) Full Changelog: [v0.1.0-alpha.34...v0.1.0-alpha.35](https://github.com/lithic-com/lithic-ruby/compare/v0.1.0-alpha.34...v0.1.0-alpha.35) diff --git a/Gemfile.lock b/Gemfile.lock index 2344948f..002382d3 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - lithic (0.1.0.pre.alpha.35) + lithic (0.1.0.pre.alpha.36) connection_pool GEM diff --git a/README.md b/README.md index c29e3b54..9f3a7cb6 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 "lithic", "~> 0.1.0.pre.alpha.35" +gem "lithic", "~> 0.1.0.pre.alpha.36" ``` diff --git a/lib/lithic/version.rb b/lib/lithic/version.rb index 8c5298ef..8f05cd7f 100644 --- a/lib/lithic/version.rb +++ b/lib/lithic/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Lithic - VERSION = "0.1.0.pre.alpha.35" + VERSION = "0.1.0.pre.alpha.36" end