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 @@
{
".": "1.2.0"
".": "1.3.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ GIT
PATH
remote: .
specs:
increase (1.2.0)
increase (1.3.0)
connection_pool

GEM
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
<!-- x-release-please-start-version -->

```ruby
gem "increase", "~> 1.2.0"
gem "increase", "~> 1.3.0"
```

<!-- x-release-please-end -->
Expand Down
4 changes: 3 additions & 1 deletion lib/increase/models/pending_transaction.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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.
#
Expand Down
3 changes: 2 additions & 1 deletion lib/increase/models/transaction.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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.
#
Expand Down
2 changes: 1 addition & 1 deletion lib/increase/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Increase
VERSION = "1.2.0"
VERSION = "1.3.0"
end
4 changes: 3 additions & 1 deletion rbi/increase/models/pending_transaction.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
3 changes: 2 additions & 1 deletion rbi/increase/models/transaction.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down