increase 1.320.0 → 1.322.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0f31dce22ce8d21615197f939077cf09a4c10b17791fd1d7a2d18f6ced99af7e
4
- data.tar.gz: fc25a99bf46c44e7f103fa343b32f50801a87dc1af7f9fe0de267ae5ea10ab97
3
+ metadata.gz: 60a0537a682635e58ab17f975296f5321c9a87591bd14a1db0e7c73ad9975b08
4
+ data.tar.gz: c37a4c9dac0c78f56261535d566adc3173e48a4cb2360abfe662186ac9d08aa7
5
5
  SHA512:
6
- metadata.gz: 90ddc738082df83cfb68a12a8e45d2db05d4ee24aa83b968ab7fc495884923ab7b79210fbd369a5e7611f8fd423499ee738c428b5a0b73a4ff9581183f969efc
7
- data.tar.gz: b17e5bb96699753510731a49549493bad2aa18e13226627c226ef8bee28b015fa75d54b03445d4a0e7bb75f6c697a0a467b43800bdaabb5d07fb1cab58d2018d
6
+ metadata.gz: ba6a88f6fc3525d8af38026c1e68bafebdefcdb6b1ec65ba1f2b00d2b28e80223a858fc1fe07009a56e58d1c0abb8182c20a05d28306cb1356e8fdf64f69017f
7
+ data.tar.gz: 29bdef36134f652609f23ef796df5bbb8210a7664ba99834c3bbc4401926bc4b57f4eb762c23c99dec9d8f984c3dbd7ad088feaeb76ec50e75270c0575274bc2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.322.0 (2026-05-04)
4
+
5
+ Full Changelog: [v1.321.0...v1.322.0](https://github.com/Increase/increase-ruby/compare/v1.321.0...v1.322.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([992ee5c](https://github.com/Increase/increase-ruby/commit/992ee5c8d7f0b8d7ffaec9d2ee22b180676a3ce5))
10
+
11
+ ## 1.321.0 (2026-05-04)
12
+
13
+ Full Changelog: [v1.320.0...v1.321.0](https://github.com/Increase/increase-ruby/compare/v1.320.0...v1.321.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([a7d9172](https://github.com/Increase/increase-ruby/commit/a7d9172c1e5d3814495bd467c6acc71d4988dd12))
18
+
3
19
  ## 1.320.0 (2026-05-02)
4
20
 
5
21
  Full Changelog: [v1.319.0...v1.320.0](https://github.com/Increase/increase-ruby/compare/v1.319.0...v1.320.0)
data/README.md CHANGED
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
15
15
  <!-- x-release-please-start-version -->
16
16
 
17
17
  ```ruby
18
- gem "increase", "~> 1.320.0"
18
+ gem "increase", "~> 1.322.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -96,7 +96,7 @@ When the library is unable to connect to the API, or if the API returns a non-su
96
96
 
97
97
  ```ruby
98
98
  begin
99
- account = increase.accounts.create(name: "New Account!")
99
+ account = increase.accounts.create(name: "Oops")
100
100
  rescue Increase::Errors::APIConnectionError => e
101
101
  puts("The server could not be reached")
102
102
  puts(e.cause) # an underlying Exception, likely raised within `net/http`
@@ -9,7 +9,7 @@ module Increase
9
9
  # You can use this API to confirm if a routing number is valid, such as when a
10
10
  # user is providing you with bank account details. Since routing numbers uniquely
11
11
  # identify a bank, this will always return 0 or 1 entry. In Sandbox, only a few
12
- # [routing numbers are valid](/documentation/sandbox-routing-numbers#sandbox-routing-numbers).
12
+ # [routing numbers are valid](/documentation/sandbox-test-values#routing-numbers).
13
13
  # `110000000` is an example of a Sandbox routing number.
14
14
  #
15
15
  # @overload list(routing_number:, cursor: nil, limit: nil, request_options: {})
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.320.0"
4
+ VERSION = "1.322.0"
5
5
  end
@@ -6,7 +6,7 @@ module Increase
6
6
  # You can use this API to confirm if a routing number is valid, such as when a
7
7
  # user is providing you with bank account details. Since routing numbers uniquely
8
8
  # identify a bank, this will always return 0 or 1 entry. In Sandbox, only a few
9
- # [routing numbers are valid](/documentation/sandbox-routing-numbers#sandbox-routing-numbers).
9
+ # [routing numbers are valid](/documentation/sandbox-test-values#routing-numbers).
10
10
  # `110000000` is an example of a Sandbox routing number.
11
11
  sig do
12
12
  params(
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: increase
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.320.0
4
+ version: 1.322.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-05-02 00:00:00.000000000 Z
11
+ date: 2026-05-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi