From 4bc56cc2a93fddc9d94c6ddc6fb885915cc74c99 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 24 Jun 2025 21:44:13 +0000 Subject: [PATCH 1/2] feat(api): api update --- .stats.yml | 4 ++-- lib/increase/models/pending_transaction.rb | 4 +++- lib/increase/models/transaction.rb | 3 ++- rbi/increase/models/pending_transaction.rbi | 4 +++- rbi/increase/models/transaction.rbi | 3 ++- 5 files changed, 12 insertions(+), 6 deletions(-) diff --git a/.stats.yml b/.stats.yml index 3a8d9d1b8..5b1101662 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 201 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-8ba0a76a7d25f12b1aa44ebd3283129560f7a65c95a098ad89deeee6ea46c8a8.yml -openapi_spec_hash: 30519b66ae8c018865d8de252d6f5d2d +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-26cf97b4b05afc71ff1d3546e3412c4e9d30c3ac2f05a3c76444a0c945c390ea.yml +openapi_spec_hash: 0a885f91c1947c633734f6702320f2e3 config_hash: 97774f946585cecb19181a1817870d0b diff --git a/lib/increase/models/pending_transaction.rb b/lib/increase/models/pending_transaction.rb index 4c4d1b58c..1ff2256d7 100644 --- a/lib/increase/models/pending_transaction.rb +++ b/lib/increase/models/pending_transaction.rb @@ -100,7 +100,9 @@ class PendingTransaction < Increase::Internal::Type::BaseModel # {Increase::Models::PendingTransaction} for more details. # # Pending Transactions are potential future additions and removals of money from - # your bank account. + # your bank account. They impact your available balance, but not your current + # balance. To learn more, see + # [Transactions and Transfers](/documentation/transactions-transfers). # # @param id [String] The Pending Transaction identifier. # diff --git a/lib/increase/models/transaction.rb b/lib/increase/models/transaction.rb index a8e5529c1..760d0b7ea 100644 --- a/lib/increase/models/transaction.rb +++ b/lib/increase/models/transaction.rb @@ -80,7 +80,8 @@ class Transaction < Increase::Internal::Type::BaseModel # {Increase::Models::Transaction} for more details. # # Transactions are the immutable additions and removals of money from your bank - # account. They're the equivalent of line items on your bank statement. + # account. They're the equivalent of line items on your bank statement. To learn + # more, see [Transactions and Transfers](/documentation/transactions-transfers). # # @param id [String] The Transaction identifier. # diff --git a/rbi/increase/models/pending_transaction.rbi b/rbi/increase/models/pending_transaction.rbi index 0a5679525..10e6a9614 100644 --- a/rbi/increase/models/pending_transaction.rbi +++ b/rbi/increase/models/pending_transaction.rbi @@ -81,7 +81,9 @@ module Increase attr_accessor :type # Pending Transactions are potential future additions and removals of money from - # your bank account. + # your bank account. They impact your available balance, but not your current + # balance. To learn more, see + # [Transactions and Transfers](/documentation/transactions-transfers). sig do params( id: String, diff --git a/rbi/increase/models/transaction.rbi b/rbi/increase/models/transaction.rbi index e4fb2acd3..1bf641f17 100644 --- a/rbi/increase/models/transaction.rbi +++ b/rbi/increase/models/transaction.rbi @@ -63,7 +63,8 @@ module Increase attr_accessor :type # Transactions are the immutable additions and removals of money from your bank - # account. They're the equivalent of line items on your bank statement. + # account. They're the equivalent of line items on your bank statement. To learn + # more, see [Transactions and Transfers](/documentation/transactions-transfers). sig do params( id: String, From 06d7a860168479b72d19da070439e5ba4509382e Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 24 Jun 2025 21:44:32 +0000 Subject: [PATCH 2/2] release: 1.3.0 --- .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 d0ab6645f..2a8f4ffdd 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.2.0" + ".": "1.3.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 1769e5583..01e2b4317 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.3.0 (2025-06-24) + +Full Changelog: [v1.2.0...v1.3.0](https://github.com/Increase/increase-ruby/compare/v1.2.0...v1.3.0) + +### Features + +* **api:** api update ([4bc56cc](https://github.com/Increase/increase-ruby/commit/4bc56cc2a93fddc9d94c6ddc6fb885915cc74c99)) + ## 1.2.0 (2025-06-24) Full Changelog: [v1.1.0...v1.2.0](https://github.com/Increase/increase-ruby/compare/v1.1.0...v1.2.0) diff --git a/Gemfile.lock b/Gemfile.lock index f9a0f75f1..b4931d351 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - increase (1.2.0) + increase (1.3.0) connection_pool GEM diff --git a/README.md b/README.md index e0b692118..9454d58d6 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.2.0" +gem "increase", "~> 1.3.0" ``` diff --git a/lib/increase/version.rb b/lib/increase/version.rb index bcb32876b..d76c2a56e 100644 --- a/lib/increase/version.rb +++ b/lib/increase/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Increase - VERSION = "1.2.0" + VERSION = "1.3.0" end