lws 10.0.0 → 10.0.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 +8 -0
- data/lib/lws/version.rb +1 -1
- metadata +21 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b95bfeece7dd86ad3600b16dcb9144c705c4229d470812260af4d1d0970ce8d4
|
|
4
|
+
data.tar.gz: 59ce679a1c5343c37be5c5ac2c59c3560e51e79f62fafba17f48e561d504cf42
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 979c5b1e4565900eed76bc588674cf75a52c7ddb1bb227eb6913c43b17316d940d68775d19427281b34534d60705277b9babb16ad116372ccfcfea48adfd7847
|
|
7
|
+
data.tar.gz: 4eeb72294ada48b88afda88ab5c706f44eea5a181ecb7ed0de31cab4321025a8fb7c29d414715da99eae0733ceecaba7c151ddfd0177ea9d9e4a8cc8900103f0
|
data/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,13 @@ of LWS in the major/minor part of te version.
|
|
|
8
8
|
|
|
9
9
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
10
10
|
|
|
11
|
+
## [10.0.1] - 2024-10-10
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
|
|
15
|
+
- Bring back the dependency on the `net-http-persistent` gem (in case Faraday
|
|
16
|
+
1.x is used)
|
|
17
|
+
|
|
11
18
|
## [10.0.0] - 2024-10-10
|
|
12
19
|
|
|
13
20
|
### Added
|
|
@@ -571,3 +578,4 @@ Initial release
|
|
|
571
578
|
[9.0.1]: https://gitlab.leftclick.network/platform/ruby-lws/compare/v9.0.0...v9.0.1
|
|
572
579
|
[9.0.2]: https://gitlab.leftclick.network/platform/ruby-lws/compare/v9.0.1...v9.0.2
|
|
573
580
|
[10.0.0]: https://gitlab.leftclick.network/platform/ruby-lws/compare/v9.0.2...v10.0.0
|
|
581
|
+
[10.0.1]: https://gitlab.leftclick.network/platform/ruby-lws/compare/v10.0.0...v10.0.1
|
data/lib/lws/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lws
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 10.0.
|
|
4
|
+
version: 10.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- LeftClick B.V.
|
|
@@ -64,6 +64,26 @@ dependencies:
|
|
|
64
64
|
- - "<"
|
|
65
65
|
- !ruby/object:Gem::Version
|
|
66
66
|
version: '2.0'
|
|
67
|
+
- !ruby/object:Gem::Dependency
|
|
68
|
+
name: net-http-persistent
|
|
69
|
+
requirement: !ruby/object:Gem::Requirement
|
|
70
|
+
requirements:
|
|
71
|
+
- - ">="
|
|
72
|
+
- !ruby/object:Gem::Version
|
|
73
|
+
version: '2.9'
|
|
74
|
+
- - "<"
|
|
75
|
+
- !ruby/object:Gem::Version
|
|
76
|
+
version: '5.0'
|
|
77
|
+
type: :runtime
|
|
78
|
+
prerelease: false
|
|
79
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
80
|
+
requirements:
|
|
81
|
+
- - ">="
|
|
82
|
+
- !ruby/object:Gem::Version
|
|
83
|
+
version: '2.9'
|
|
84
|
+
- - "<"
|
|
85
|
+
- !ruby/object:Gem::Version
|
|
86
|
+
version: '5.0'
|
|
67
87
|
- !ruby/object:Gem::Dependency
|
|
68
88
|
name: hashie
|
|
69
89
|
requirement: !ruby/object:Gem::Requirement
|