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.153.0"
".": "1.154.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: 229
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-d3646347697623deab851a220ce4b217e923bde3b3108af9eceb4da6df0534e2.yml
openapi_spec_hash: 516fabeef616c695941d3a4aa4051f76
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-979679fb897563997cb8d20590ac73729287354524a0c2579f4dfd41fa8b63d9.yml
openapi_spec_hash: 22eae96401c4a0de1d135e18133924d1
config_hash: b6f365add90e618b2174634df140826e
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.154.0 (2025-12-05)

Full Changelog: [v1.153.0...v1.154.0](https://github.com/Increase/increase-ruby/compare/v1.153.0...v1.154.0)

### Features

* **api:** api update ([fa635c9](https://github.com/Increase/increase-ruby/commit/fa635c93a57dbbd88d0e64231cf0189364484e25))

## 1.153.0 (2025-12-04)

Full Changelog: [v1.152.0...v1.153.0](https://github.com/Increase/increase-ruby/compare/v1.152.0...v1.153.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.153.0)
increase (1.154.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.153.0"
gem "increase", "~> 1.154.0"
```

<!-- x-release-please-end -->
Expand Down
7 changes: 4 additions & 3 deletions lib/increase/resources/pending_transactions.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ class PendingTransactions
# {Increase::Models::PendingTransactionCreateParams} for more details.
#
# Creates a pending transaction on an account. This can be useful to hold funds
# for an external payment or known future transaction outside of Increase. The
# resulting Pending Transaction will have a `category` of `user_initiated_hold`
# and can be released via the API to unlock the held funds.
# for an external payment or known future transaction outside of Increase (only
# negative amounts are supported). The resulting Pending Transaction will have a
# `category` of `user_initiated_hold` and can be released via the API to unlock
# the held funds.
#
# @overload create(account_id:, amount:, description: nil, request_options: {})
#
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.153.0"
VERSION = "1.154.0"
end
7 changes: 4 additions & 3 deletions rbi/increase/resources/pending_transactions.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ module Increase
module Resources
class PendingTransactions
# Creates a pending transaction on an account. This can be useful to hold funds
# for an external payment or known future transaction outside of Increase. The
# resulting Pending Transaction will have a `category` of `user_initiated_hold`
# and can be released via the API to unlock the held funds.
# for an external payment or known future transaction outside of Increase (only
# negative amounts are supported). The resulting Pending Transaction will have a
# `category` of `user_initiated_hold` and can be released via the API to unlock
# the held funds.
sig do
params(
account_id: String,
Expand Down