ka-ching-client 0.4.3 → 0.5.1
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 +7 -2
- data/Gemfile.lock +1 -1
- data/UPGRADING.md +4 -0
- data/lib/ka-ching-client.rb +12 -0
- data/lib/ka_ching/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: '0979247bfcb9ca28e05054a40c3341faf04dd840000a737252cd2fd504b56e59'
|
|
4
|
+
data.tar.gz: 962463c97cec737b0f6ed8ca7f166e54979a5dee840388d710d0cb6cada9d6e3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1c8820df73baa3a93cfacd01189e3ff6f9f823376105007f8c948771ded8056dbd2ee5837cdac9be1d5dd565119b2718114b64e4ec3cc77f979ec50886a6af96
|
|
7
|
+
data.tar.gz: 2e7b256b30c99b301cb18abee1cbd65aa32f8d8745d56c5488b7b54a00c65813df3777808e94904cbd49234df3ca2d9cbda319b8c3820b22b08e871543ba3401
|
data/CHANGELOG.md
CHANGED
|
@@ -5,11 +5,16 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
-
## [
|
|
8
|
+
## [0.5.0] - 2024-01-20
|
|
9
|
+
|
|
10
|
+
### Deprecation Warning 🚨
|
|
11
|
+
|
|
12
|
+
- [#65](https://github.com/simonneutert/ka-ching-client/pull/65) Adds deprecation warning in code for Ruby v2.7 - [@simonneutert](https://github.com/simonneutert).
|
|
13
|
+
|
|
14
|
+
## [0.4.3] - 2023-12-21
|
|
9
15
|
|
|
10
16
|
- [#63](https://github.com/simonneutert/ka-ching-client/pull/63) Deprecation warning for Ruby v2.7 - [@simonneutert](https://github.com/simonneutert).
|
|
11
17
|
- [#42](https://github.com/simonneutert/ka-ching-client/pull/42) Bump httpx to 1.0.2 - [@simonneutert](https://github.com/simonneutert).
|
|
12
|
-
- [#<PRNUMBER>](https://github.com/simonneutert/ka-ching-client/pull/<PRNUMBER>) add PR description - [@<username>](https://github.com/<username>).
|
|
13
18
|
|
|
14
19
|
## [0.4.2] - 2023-10-09
|
|
15
20
|
|
data/Gemfile.lock
CHANGED
data/UPGRADING.md
CHANGED
data/lib/ka-ching-client.rb
CHANGED
|
@@ -12,3 +12,15 @@ require_relative 'ka_ching/api_v1/saldo'
|
|
|
12
12
|
require_relative 'ka_ching/api_v1/admin'
|
|
13
13
|
require_relative 'ka_ching/api_v1/tenants'
|
|
14
14
|
require_relative 'ka_ching/api_v1/client'
|
|
15
|
+
|
|
16
|
+
if RUBY_DESCRIPTION.match?(/ruby 2\.7\./)
|
|
17
|
+
puts <<~WARNING
|
|
18
|
+
|
|
19
|
+
DEPRECATION WARNING!
|
|
20
|
+
KaChingClient will deprecate support for Ruby 2.7 in one of the next minor releases.
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
WARNING
|
|
24
|
+
warn 'KaChingClient will deprecate support for Ruby 2.7 in one of the next minor releases.'
|
|
25
|
+
# warn 'KaChingClient does not support Ruby 2.7. Please upgrade to Ruby 3.0 or higher.'
|
|
26
|
+
end
|
data/lib/ka_ching/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ka-ching-client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Simon Neutert
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-01-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|