ka-ching-client 0.4.3 → 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5dad66b9f3163e5e21ae8fc0f6901b5c79a4757215cc84e81dcd8057ee26e516
4
- data.tar.gz: 0574ebb6ebf7d86bb453bc7a23c4526222f85200228d0c40a27295b8a85ab29a
3
+ metadata.gz: '0979247bfcb9ca28e05054a40c3341faf04dd840000a737252cd2fd504b56e59'
4
+ data.tar.gz: 962463c97cec737b0f6ed8ca7f166e54979a5dee840388d710d0cb6cada9d6e3
5
5
  SHA512:
6
- metadata.gz: 31ad0c13b23c192e85b596692a477cee1e14ede5e09592f668599453092a9bdf2a26789d42fd984bfc1f451f0e3a2d0f73eb5ff31e0ca742a6d7d6010c200892
7
- data.tar.gz: 74eb6f5979ecf7f2ea5b86a909deed734463f516dda2ee31cf7ca652bbd38bbb242f06458be8ead2bff320b22d3db9a9e0d4a1ac543a6e414cf94dcbdfca1ea9
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
- ## [next release] - unreleased
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ka-ching-client (0.4.3)
4
+ ka-ching-client (0.5.1)
5
5
  faraday (>= 2.7.10, < 2.9.0)
6
6
  httpx (>= 0.22.4, < 1.3.0)
7
7
 
data/UPGRADING.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Upgrading ka-ching-client
2
2
 
3
+ ## 0.5.0 Deprecation Warning!
4
+
5
+ Ruby v2.7 will be removed any time soon!
6
+
3
7
  ## 0.4.3 Deprecation Warning!
4
8
 
5
9
  Ruby v2.7 will be deprecated from v0.5.0 on.
@@ -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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module KaChing
4
- VERSION = '0.4.3'
4
+ VERSION = '0.5.1'
5
5
  end
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.3
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: 2023-12-21 00:00:00.000000000 Z
11
+ date: 2024-01-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday