increase 1.320.0 → 1.321.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +2 -2
- data/lib/increase/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3387fe4a5b134ca2960b21a0a886e54cf48423c277d0fa4aa0870d58e96ccfb9
|
|
4
|
+
data.tar.gz: 4e404e48846c5ec4fc9aa1d7033b776417222032cdd097ba9a1c5c126dc37edc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 378c816e56cc2958bfc3460ad0977c45ce740719db35968832516ab809291d2077c26dc9fe2ea6cf1d03c30b43d84533ef0a6c17d3c82a83fdd99c3686fc5bb9
|
|
7
|
+
data.tar.gz: 5373f90a3597363d95af1fd804a63cff4bd39849143858f3334aeab5d7fd5e5aaa585a07423b8a9ec55302f85ade6e710a3faa1663d3258153835f029c2ea9d6
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.321.0 (2026-05-04)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.320.0...v1.321.0](https://github.com/Increase/increase-ruby/compare/v1.320.0...v1.321.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([a7d9172](https://github.com/Increase/increase-ruby/commit/a7d9172c1e5d3814495bd467c6acc71d4988dd12))
|
|
10
|
+
|
|
3
11
|
## 1.320.0 (2026-05-02)
|
|
4
12
|
|
|
5
13
|
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.
|
|
18
|
+
gem "increase", "~> 1.321.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: "
|
|
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`
|
data/lib/increase/version.rb
CHANGED
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.
|
|
4
|
+
version: 1.321.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-
|
|
11
|
+
date: 2026-05-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|