openclacky 0.9.13 → 0.9.14
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 +5 -0
- data/lib/clacky/version.rb +1 -1
- metadata +5 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1deed3c386ab1fc9beebff6dd48d50210ed8a3d6a1f3a79848dbf77030c78d90
|
|
4
|
+
data.tar.gz: 188211af7374bd71c3542be5a7252aeef256f7860c47a100e2b5a2e657dfd029
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 74d9ee091703bb95838f64a214a4fb233bcb4764e428cd76e17a53add5c6c54ad21129499f4c83956b4692a04261fc5e43e39debd88883ab40eb6c13f46ad2ba
|
|
7
|
+
data.tar.gz: c080f4e429ff68cba617cf539de1597be5be0c9014c1dca49d94892d7d469b1ebe190432eaa2f91a7ba78364e8a19baddd79db70b30bd283cb21721400cfbb39
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.9.14] - 2026-03-27
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- **rubyzip Ruby 2.6 compatibility**: replaced `if RUBY_VERSION >= "3.0"` conditional in gemspec (evaluated at build time, ineffective at install time) with `~> 2.4.1` pin — RubyGems now correctly selects rubyzip 2.4.1 when installing on Ruby 2.6
|
|
14
|
+
|
|
10
15
|
## [0.9.13] - 2026-03-27
|
|
11
16
|
|
|
12
17
|
### Added
|
data/lib/clacky/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: openclacky
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.14
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- windy
|
|
@@ -201,22 +201,16 @@ dependencies:
|
|
|
201
201
|
name: rubyzip
|
|
202
202
|
requirement: !ruby/object:Gem::Requirement
|
|
203
203
|
requirements:
|
|
204
|
-
- - "
|
|
205
|
-
- !ruby/object:Gem::Version
|
|
206
|
-
version: '2.4'
|
|
207
|
-
- - "<"
|
|
204
|
+
- - "~>"
|
|
208
205
|
- !ruby/object:Gem::Version
|
|
209
|
-
version:
|
|
206
|
+
version: 2.4.1
|
|
210
207
|
type: :runtime
|
|
211
208
|
prerelease: false
|
|
212
209
|
version_requirements: !ruby/object:Gem::Requirement
|
|
213
210
|
requirements:
|
|
214
|
-
- - "
|
|
215
|
-
- !ruby/object:Gem::Version
|
|
216
|
-
version: '2.4'
|
|
217
|
-
- - "<"
|
|
211
|
+
- - "~>"
|
|
218
212
|
- !ruby/object:Gem::Version
|
|
219
|
-
version:
|
|
213
|
+
version: 2.4.1
|
|
220
214
|
- !ruby/object:Gem::Dependency
|
|
221
215
|
name: rouge
|
|
222
216
|
requirement: !ruby/object:Gem::Requirement
|