From d9f2aaa0973e9f1b79fe3c9ffcfd1c3be5f0a395 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:15:01 +0000 Subject: [PATCH 1/2] fix: sorbet type annotation on client's `environ` settings --- rbi/increase/client.rbi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rbi/increase/client.rbi b/rbi/increase/client.rbi index 2403b201c..c5a50adaf 100644 --- a/rbi/increase/client.rbi +++ b/rbi/increase/client.rbi @@ -187,7 +187,7 @@ module Increase 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 e4e042fff4823c31009cac6c6f42a0ec77e2ac8f 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:15:21 +0000 Subject: [PATCH 2/2] release: 1.5.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ Gemfile.lock | 2 +- README.md | 2 +- lib/increase/version.rb | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 4a2f7e609..4130df050 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.5.1" + ".": "1.5.2" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a1bc56a0..5a5311509 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.5.2 (2025-06-27) + +Full Changelog: [v1.5.1...v1.5.2](https://github.com/Increase/increase-ruby/compare/v1.5.1...v1.5.2) + +### Bug Fixes + +* sorbet type annotation on client's `environ` settings ([d9f2aaa](https://github.com/Increase/increase-ruby/commit/d9f2aaa0973e9f1b79fe3c9ffcfd1c3be5f0a395)) + ## 1.5.1 (2025-06-26) Full Changelog: [v1.5.0...v1.5.1](https://github.com/Increase/increase-ruby/compare/v1.5.0...v1.5.1) diff --git a/Gemfile.lock b/Gemfile.lock index 376bc4653..c026e619a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - increase (1.5.1) + increase (1.5.2) connection_pool GEM diff --git a/README.md b/README.md index bdb20bac0..0e3630587 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 "increase", "~> 1.5.1" +gem "increase", "~> 1.5.2" ``` diff --git a/lib/increase/version.rb b/lib/increase/version.rb index 0865b358b..b95fb8693 100644 --- a/lib/increase/version.rb +++ b/lib/increase/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Increase - VERSION = "1.5.1" + VERSION = "1.5.2" end