unwrappr 0.8.3 → 0.8.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 +4 -4
- data/CHANGELOG.md +8 -1
- data/lib/unwrappr/version.rb +1 -1
- metadata +16 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 88f40ff8e4c30c678827fba2f543a52e07113906ae6e0b8afed1d8ee45a7e020
|
|
4
|
+
data.tar.gz: 2e52f459145fff601bf3054e9fbea6c8e7cca135d68476c47286d5788ffa1ecf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8c5d9871f2869f6a879f5f152f5fde100f20605ad8b47ce6ca608dbba448c92a8de53cf3d44712f382d7fbc829e429558eac8232ccb932660e4ad85683e26062
|
|
7
|
+
data.tar.gz: aa4bedce4068c5f11c87969e275af638c2326054105763c4b4b462dbb5c309b76d3b5ac190916912f12103ed1ca9f0b424864f8c454fed083ccb72536acf508b
|
data/CHANGELOG.md
CHANGED
|
@@ -6,7 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
-
[Unreleased]: https://github.com/envato/unwrappr/compare/v0.8.
|
|
9
|
+
[Unreleased]: https://github.com/envato/unwrappr/compare/v0.8.4...HEAD
|
|
10
|
+
|
|
11
|
+
## [0.8.4] 2025-12-29
|
|
12
|
+
|
|
13
|
+
- Add `logger` as a runtime dependency to support Ruby 4.0 ([#101]).
|
|
14
|
+
|
|
15
|
+
[0.8.4]: https://github.com/envato/unwrappr/compare/v0.8.3...v0.8.4
|
|
16
|
+
[#101]: https://github.com/envato/unwrappr/pull/101
|
|
10
17
|
|
|
11
18
|
## [0.8.3] 2025-12-29
|
|
12
19
|
|
data/lib/unwrappr/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: unwrappr
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Emilyn Escabarte
|
|
@@ -103,6 +103,20 @@ dependencies:
|
|
|
103
103
|
- - "~>"
|
|
104
104
|
- !ruby/object:Gem::Version
|
|
105
105
|
version: '1'
|
|
106
|
+
- !ruby/object:Gem::Dependency
|
|
107
|
+
name: logger
|
|
108
|
+
requirement: !ruby/object:Gem::Requirement
|
|
109
|
+
requirements:
|
|
110
|
+
- - "~>"
|
|
111
|
+
- !ruby/object:Gem::Version
|
|
112
|
+
version: '1'
|
|
113
|
+
type: :runtime
|
|
114
|
+
prerelease: false
|
|
115
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
116
|
+
requirements:
|
|
117
|
+
- - "~>"
|
|
118
|
+
- !ruby/object:Gem::Version
|
|
119
|
+
version: '1'
|
|
106
120
|
- !ruby/object:Gem::Dependency
|
|
107
121
|
name: octokit
|
|
108
122
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -178,6 +192,7 @@ homepage: https://github.com/envato/unwrappr
|
|
|
178
192
|
licenses:
|
|
179
193
|
- MIT
|
|
180
194
|
metadata:
|
|
195
|
+
allowed_push_host: https://rubygems.org
|
|
181
196
|
bug_tracker_uri: https://github.com/envato/unwrappr/issues
|
|
182
197
|
changelog_uri: https://github.com/envato/unwrappr/blob/HEAD/CHANGELOG.md
|
|
183
198
|
documentation_uri: https://github.com/envato/unwrappr/blob/HEAD/README.md
|