tenios-api 1.0.3 → 1.0.4

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: 3136d521c83234370c1b3c1fb2052b4f8367d5e051604403b300975057d7f6e7
4
- data.tar.gz: 4da46b1698c6595ec64c44865ae95b01343a9c5c2a74b488d794686ad1960483
3
+ metadata.gz: e8aa0574c923bd0066e63b64961da1f91975fc86ade232e5d4031b16e8ec6cf3
4
+ data.tar.gz: 2f142ff19d031cddbd1cae1e26ed43782434aa8b61992bf545cf6d43a30888fb
5
5
  SHA512:
6
- metadata.gz: a16b1dc2248f2d9da25b14b86e55570b1baf026d6e8c91072a0cbe4b35962847595bfbfe644022292f518f96c94ead36de3a2dc4b49a66d4de60cb1d69285935
7
- data.tar.gz: 76a02116be72f08b426fe13466b87e0ac8984cc4f6722c1523e3b2d63ef0b9a284437699cdcac8c53069750a52708b62f62e33078a69b49b864e7ce2705e9071
6
+ metadata.gz: dbcb9285c1f2904744c15abae015103536ce0d3c51adbb9348771239ac3f53e4645d87b774011882c830e111d0cbfc549375ea11e7b799e8ef18b77ad2325965
7
+ data.tar.gz: 4af860c36f24b017f3c67b3f1f158e5604363d472211d07bcd8343e64e680c1bc59f4d0e697423a6ecc31e3b767c929c9c1d0448e8afba23163ebf64810e8dc0
data/CHANGELOG.md CHANGED
@@ -8,6 +8,14 @@
8
8
  ### Security
9
9
  ### Misc
10
10
 
11
+ ## [1.0.4] - 2020-02-22
12
+
13
+ ### Fixed
14
+
15
+ * Relax faraday version constraint
16
+
17
+ [1.0.4]: https://github.com/carwow/tenios-api-ruby/compare/v1.0.3...v1.0.4
18
+
11
19
  ## [1.0.3] - 2020-02-16
12
20
 
13
21
  ### Misc
@@ -15,7 +23,7 @@
15
23
  * Better gem description
16
24
  * Drop zeitwerk (ran into some issues in a Rails app 😕)
17
25
 
18
- [1.0.3]: https://github.com/carwow/deals_service_client/compare/v1.0.2...v1.0.3
26
+ [1.0.3]: https://github.com/carwow/tenios-api-ruby/compare/v1.0.2...v1.0.3
19
27
 
20
28
  ## [1.0.2] - 2020-02-13
21
29
 
@@ -23,7 +31,7 @@
23
31
 
24
32
  * Fix gemspec links
25
33
 
26
- [1.0.2]: https://github.com/carwow/deals_service_client/compare/v1.0.1...v1.0.2
34
+ [1.0.2]: https://github.com/carwow/tenios-api-ruby/compare/v1.0.1...v1.0.2
27
35
 
28
36
  ## [1.0.1] - 2020-02-13
29
37
 
@@ -31,7 +39,7 @@
31
39
 
32
40
  * Ruby 3.0 support
33
41
 
34
- [1.0.1]: https://github.com/carwow/deals_service_client/compare/v1.0.0...v1.0.1
42
+ [1.0.1]: https://github.com/carwow/tenios-api-ruby/compare/v1.0.0...v1.0.1
35
43
 
36
44
  ## [1.0.0] - 2020-02-12
37
45
 
@@ -44,4 +52,4 @@
44
52
 
45
53
  * Internal refactoring (no breaking changes)
46
54
 
47
- [1.0.0]: https://github.com/carwow/deals_service_client/compare/v0.4.0...v1.0.0
55
+ [1.0.0]: https://github.com/carwow/tenios-api-ruby/compare/v0.4.0...v1.0.0
data/lib/tenios/api.rb CHANGED
@@ -4,6 +4,6 @@ require "tenios/api/client"
4
4
 
5
5
  module Tenios
6
6
  module API
7
- autoload :Version, "tenios/api/version"
7
+ autoload :VERSION, "tenios/api/version"
8
8
  end
9
9
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Tenios
4
4
  module API
5
- VERSION = "1.0.3"
5
+ VERSION = "1.0.4"
6
6
  end
7
7
  end
data/tenios-api.gemspec CHANGED
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
22
22
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.start_with? "spec" }
23
23
  spec.require_paths = ["lib"]
24
24
 
25
- spec.add_dependency "faraday", "~> 1.3"
25
+ spec.add_dependency "faraday", "~> 1.1"
26
26
  spec.add_dependency "faraday_middleware", "~> 1.0"
27
27
 
28
28
  spec.add_development_dependency "pry", "~> 0.14"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tenios-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - carwow Developers
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-02-16 00:00:00.000000000 Z
11
+ date: 2021-02-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.3'
19
+ version: '1.1'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '1.3'
26
+ version: '1.1'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: faraday_middleware
29
29
  requirement: !ruby/object:Gem::Requirement