version_gem 1.1.10 → 1.1.12
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
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +42 -1
- data/LICENSE.md +2 -2
- data/README.md +4 -3
- data/SECURITY.md +1 -1
- data/lib/version_gem/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +19 -40
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 036c36e35a1bba8fb12b5a2e8ad2fb960070487462f56a906e07abc1f269a8f0
|
|
4
|
+
data.tar.gz: 49e719e30a2e23747b5ca0f262926da0f3dbac329cdb9bf441c063fbca985565
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 100e2c8fd944bdbcbb4630b1a6cdf1f18c1e84812a7660d0d96b919b9f0a82f4fa7ece31fa44980c2c4e73622be5d7efc7f8af2bc455af90135d8c6bfad0b5bf
|
|
7
|
+
data.tar.gz: d7f870ceea407bf03a615ba0fe27deedcf4db724bd7a0f4380a6d8d4dbfacbc28462a28820cf339b7f8986d2a09ea86318ce0624a33b8928c5983ee5ecd8cd5e
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -30,6 +30,43 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
30
30
|
|
|
31
31
|
### Security
|
|
32
32
|
|
|
33
|
+
## [1.1.12] - 2026-06-14
|
|
34
|
+
|
|
35
|
+
- TAG: [v1.1.12][1.1.12t]
|
|
36
|
+
- COVERAGE: 100.00% -- 58/58 lines in 2 files
|
|
37
|
+
- BRANCH COVERAGE: 0.00% -- 0/0 branches in 2 files
|
|
38
|
+
- 85.19% documented
|
|
39
|
+
|
|
40
|
+
### Changed
|
|
41
|
+
|
|
42
|
+
- Retemplated repository metadata, workflows, modular gemfiles, and documentation
|
|
43
|
+
scaffolding with the current `kettle-jem` template.
|
|
44
|
+
|
|
45
|
+
### Fixed
|
|
46
|
+
|
|
47
|
+
- Restored `docs/CNAME` so the generated documentation site keeps its custom domain.
|
|
48
|
+
- Corrected misspelled contact metadata to use `galtzo.com`.
|
|
49
|
+
|
|
50
|
+
## [1.1.11] - 2026-06-06
|
|
51
|
+
|
|
52
|
+
- TAG: [v1.1.11][1.1.11t]
|
|
53
|
+
- COVERAGE: 100.00% -- 58/58 lines in 2 files
|
|
54
|
+
- BRANCH COVERAGE: 0.00% -- 0/0 branches in 2 files
|
|
55
|
+
- 85.19% documented
|
|
56
|
+
|
|
57
|
+
### Added
|
|
58
|
+
|
|
59
|
+
- Added the generated `appraisal2` binstub.
|
|
60
|
+
|
|
61
|
+
### Changed
|
|
62
|
+
|
|
63
|
+
- Refreshed generated CI workflows, README support badges, gemspec development
|
|
64
|
+
dependency floors, and template metadata from the current kettle-jem
|
|
65
|
+
template.
|
|
66
|
+
- Updated generated Appraisal2 integration to use the `appraisal2-rubocop`
|
|
67
|
+
plugin DSL and raised the generated `appraisal2` / `appraisal2-rubocop`
|
|
68
|
+
dependency floors.
|
|
69
|
+
|
|
33
70
|
## [1.1.10] - 2026-06-02
|
|
34
71
|
|
|
35
72
|
- TAG: [v1.1.10][1.1.10t]
|
|
@@ -284,7 +321,11 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
284
321
|
|
|
285
322
|
- Initial release, with basic version parsing API (@pboling)
|
|
286
323
|
|
|
287
|
-
[Unreleased]: https://github.com/ruby-oauth/version_gem/compare/v1.1.
|
|
324
|
+
[Unreleased]: https://github.com/ruby-oauth/version_gem/compare/v1.1.12...HEAD
|
|
325
|
+
[1.1.12]: https://github.com/ruby-oauth/version_gem/compare/v1.1.11...v1.1.12
|
|
326
|
+
[1.1.12t]: https://github.com/ruby-oauth/version_gem/releases/tag/v1.1.12
|
|
327
|
+
[1.1.11]: https://github.com/ruby-oauth/version_gem/compare/v1.1.10...v1.1.11
|
|
328
|
+
[1.1.11t]: https://github.com/ruby-oauth/version_gem/releases/tag/v1.1.11
|
|
288
329
|
[1.1.10]: https://github.com/ruby-oauth/version_gem/compare/v1.1.9...v1.1.10
|
|
289
330
|
[1.1.10t]: https://github.com/ruby-oauth/version_gem/releases/tag/v1.1.10
|
|
290
331
|
[1.1.9]: https://github.com/ruby-oauth/version_gem/compare/v1.1.8...v1.1.9
|
data/LICENSE.md
CHANGED
data/README.md
CHANGED
|
@@ -63,7 +63,7 @@ For more discussion about this [see issue #2](https://gitlab.com/oauth-xx/versio
|
|
|
63
63
|
| Works with Truffle Ruby | [![Truffle Ruby 22.3 Compat][💎truby-22.3i]][🚎truby-22.3-wf] [![Truffle Ruby 23.0 Compat][💎truby-23.0i]][🚎truby-23.0-wf] [![Truffle Ruby 23.1 Compat][💎truby-23.1i]][🚎truby-23.1-wf] <br/> [![Truffle Ruby 24.2 Compat][💎truby-24.2i]][🚎truby-24.2-wf] [![Truffle Ruby 25.0 Compat][💎truby-25.0i]][🚎truby-25.0-wf] [![Truffle Ruby current Compat][💎truby-c-i]][🚎9-t-wf]|
|
|
64
64
|
| Works with MRI Ruby 4 | [![Ruby 4.0 Compat][💎ruby-4.0i]][🚎11-c-wf] [![Ruby current Compat][💎ruby-c-i]][🚎11-c-wf] [![Ruby HEAD Compat][💎ruby-headi]][🚎3-hd-wf]|
|
|
65
65
|
| Works with MRI Ruby 3 | [![Ruby 3.0 Compat][💎ruby-3.0i]][🚎ruby-3.0-wf] [![Ruby 3.1 Compat][💎ruby-3.1i]][🚎ruby-3.1-wf] [![Ruby 3.2 Compat][💎ruby-3.2i]][🚎ruby-3.2-wf] [![Ruby 3.3 Compat][💎ruby-3.3i]][🚎ruby-3.3-wf] [![Ruby 3.4 Compat][💎ruby-3.4i]][🚎ruby-3.4-wf]|
|
|
66
|
-
| Works with MRI Ruby 2 | ![Ruby 2.2 Compat][💎ruby-2.2i] <br/> [![Ruby 2.4 Compat][💎ruby-2.4i]][🚎ruby-2.4-wf] [![Ruby 2.5 Compat][💎ruby-2.5i]][🚎ruby-2.5-wf] [![Ruby 2.6 Compat][💎ruby-2.6i]][🚎ruby-2.6-wf] [![Ruby 2.7 Compat][💎ruby-2.7i]][🚎ruby-2.7-wf]|
|
|
66
|
+
| Works with MRI Ruby 2 | ![Ruby 2.2 Compat][💎ruby-2.2i] ![Ruby 2.3 Compat][💎ruby-2.3i] <br/> [![Ruby 2.4 Compat][💎ruby-2.4i]][🚎ruby-2.4-wf] [![Ruby 2.5 Compat][💎ruby-2.5i]][🚎ruby-2.5-wf] [![Ruby 2.6 Compat][💎ruby-2.6i]][🚎ruby-2.6-wf] [![Ruby 2.7 Compat][💎ruby-2.7i]][🚎ruby-2.7-wf]|
|
|
67
67
|
| Support & Community | [![Join Me on Daily.dev's RubyFriends][✉️ruby-friends-img]][✉️ruby-friends] [![Live Chat on Discord][✉️discord-invite-img-ftb]][✉️discord-invite] [![Get help from me on Upwork][👨🏼🏫expsup-upwork-img]][👨🏼🏫expsup-upwork] [![Get help from me on Codementor][👨🏼🏫expsup-codementor-img]][👨🏼🏫expsup-codementor] |
|
|
68
68
|
| Source | [![Source on GitLab.com][📜src-gl-img]][📜src-gl] [![Source on CodeBerg.org][📜src-cb-img]][📜src-cb] [![Source on Github.com][📜src-gh-img]][📜src-gh] [![The best SHA: dQw4w9WgXcQ!][🧮kloc-img]][🧮kloc] |
|
|
69
69
|
| Documentation | [![Current release on RubyDoc.info][📜docs-cr-rd-img]][🚎yard-current] [![YARD on Galtzo.com][📜docs-head-rd-img]][🚎yard-head] [![Maintainer Blog][🚂maint-blog-img]][🚂maint-blog] [![GitLab Wiki][📜gl-wiki-img]][📜gl-wiki] [![GitHub Wiki][📜gh-wiki-img]][📜gh-wiki] |
|
|
@@ -718,6 +718,7 @@ Thanks for RTFM. ☺️
|
|
|
718
718
|
[🚎15-🪪-wf]: https://github.com/ruby-oauth/version_gem/actions/workflows/license-eye.yml
|
|
719
719
|
[🚎15-🪪-wfi]: https://github.com/ruby-oauth/version_gem/actions/workflows/license-eye.yml/badge.svg
|
|
720
720
|
[💎ruby-2.2i]: https://img.shields.io/badge/Ruby-2.2_(%F0%9F%9A%ABCI)-AABBCC?style=for-the-badge&logo=ruby&logoColor=white
|
|
721
|
+
[💎ruby-2.3i]: https://img.shields.io/badge/Ruby-2.3_(%F0%9F%9A%ABCI)-AABBCC?style=for-the-badge&logo=ruby&logoColor=white
|
|
721
722
|
[💎ruby-2.4i]: https://img.shields.io/badge/Ruby-2.4-DF00CA?style=for-the-badge&logo=ruby&logoColor=white
|
|
722
723
|
[💎ruby-2.5i]: https://img.shields.io/badge/Ruby-2.5-DF00CA?style=for-the-badge&logo=ruby&logoColor=white
|
|
723
724
|
[💎ruby-2.6i]: https://img.shields.io/badge/Ruby-2.6-DF00CA?style=for-the-badge&logo=ruby&logoColor=white
|
|
@@ -775,7 +776,7 @@ Thanks for RTFM. ☺️
|
|
|
775
776
|
[📄license-ref]: MIT.md
|
|
776
777
|
[📄license-img]: https://img.shields.io/badge/License-MIT-259D6C.svg
|
|
777
778
|
[📄license-compat]: https://www.apache.org/legal/resolved.html#category-a
|
|
778
|
-
[📄license-compat-img]: https://img.shields.io/badge/Apache_Compatible:_Category_A
|
|
779
|
+
[📄license-compat-img]: https://img.shields.io/badge/Apache_Compatible:_Category_A-%E2%9C%93-259D6C.svg?style=flat&logo=Apache
|
|
779
780
|
|
|
780
781
|
[📄ilo-declaration]: https://www.ilo.org/declaration/lang--en/index.htm
|
|
781
782
|
[📄ilo-declaration-img]: https://img.shields.io/badge/ILO_Fundamental_Principles-✓-259D6C.svg?style=flat
|
|
@@ -795,7 +796,7 @@ Thanks for RTFM. ☺️
|
|
|
795
796
|
| Package | version_gem |
|
|
796
797
|
| Description | 🍲 Versions are good. Versions are cool. Versions will win. |
|
|
797
798
|
| Homepage | https://github.com/ruby-oauth/version_gem |
|
|
798
|
-
| Source | https://github.com/ruby-oauth/version_gem/tree/v1.1.
|
|
799
|
+
| Source | https://github.com/ruby-oauth/version_gem/tree/v1.1.11 |
|
|
799
800
|
| License | `MIT` |
|
|
800
801
|
| Funding | https://github.com/sponsors/pboling, https://issuehunt.io/u/pboling, https://ko-fi.com/pboling, https://liberapay.com/pboling/donate, https://opencollective.com/ruby-oauth, https://patreon.com/galtzo, https://polar.sh/pboling, https://thanks.dev/u/gh/pboling, https://tidelift.com/funding/github/rubygems/version_gem, https://www.buymeacoffee.com/pboling |
|
|
801
802
|
<!-- kettle-jem:metadata:end -->
|
data/SECURITY.md
CHANGED
data/lib/version_gem/version.rb
CHANGED
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: version_gem
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter H. Boling
|
|
@@ -44,20 +44,20 @@ dependencies:
|
|
|
44
44
|
requirements:
|
|
45
45
|
- - "~>"
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: '2.
|
|
47
|
+
version: '2.2'
|
|
48
48
|
- - ">="
|
|
49
49
|
- !ruby/object:Gem::Version
|
|
50
|
-
version: 2.
|
|
50
|
+
version: 2.2.9
|
|
51
51
|
type: :development
|
|
52
52
|
prerelease: false
|
|
53
53
|
version_requirements: !ruby/object:Gem::Requirement
|
|
54
54
|
requirements:
|
|
55
55
|
- - "~>"
|
|
56
56
|
- !ruby/object:Gem::Version
|
|
57
|
-
version: '2.
|
|
57
|
+
version: '2.2'
|
|
58
58
|
- - ">="
|
|
59
59
|
- !ruby/object:Gem::Version
|
|
60
|
-
version: 2.
|
|
60
|
+
version: 2.2.9
|
|
61
61
|
- !ruby/object:Gem::Dependency
|
|
62
62
|
name: bundler-audit
|
|
63
63
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -112,20 +112,20 @@ dependencies:
|
|
|
112
112
|
requirements:
|
|
113
113
|
- - "~>"
|
|
114
114
|
- !ruby/object:Gem::Version
|
|
115
|
-
version: '3.
|
|
115
|
+
version: '3.1'
|
|
116
116
|
- - ">="
|
|
117
117
|
- !ruby/object:Gem::Version
|
|
118
|
-
version: 3.
|
|
118
|
+
version: 3.1.2
|
|
119
119
|
type: :development
|
|
120
120
|
prerelease: false
|
|
121
121
|
version_requirements: !ruby/object:Gem::Requirement
|
|
122
122
|
requirements:
|
|
123
123
|
- - "~>"
|
|
124
124
|
- !ruby/object:Gem::Version
|
|
125
|
-
version: '3.
|
|
125
|
+
version: '3.1'
|
|
126
126
|
- - ">="
|
|
127
127
|
- !ruby/object:Gem::Version
|
|
128
|
-
version: 3.
|
|
128
|
+
version: 3.1.2
|
|
129
129
|
- !ruby/object:Gem::Dependency
|
|
130
130
|
name: kettle-test
|
|
131
131
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -135,7 +135,7 @@ dependencies:
|
|
|
135
135
|
version: '2.0'
|
|
136
136
|
- - ">="
|
|
137
137
|
- !ruby/object:Gem::Version
|
|
138
|
-
version: 2.0.
|
|
138
|
+
version: 2.0.5
|
|
139
139
|
type: :development
|
|
140
140
|
prerelease: false
|
|
141
141
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -145,7 +145,7 @@ dependencies:
|
|
|
145
145
|
version: '2.0'
|
|
146
146
|
- - ">="
|
|
147
147
|
- !ruby/object:Gem::Version
|
|
148
|
-
version: 2.0.
|
|
148
|
+
version: 2.0.5
|
|
149
149
|
- !ruby/object:Gem::Dependency
|
|
150
150
|
name: turbo_tests2
|
|
151
151
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -155,7 +155,7 @@ dependencies:
|
|
|
155
155
|
version: '3.1'
|
|
156
156
|
- - ">="
|
|
157
157
|
- !ruby/object:Gem::Version
|
|
158
|
-
version: 3.1.
|
|
158
|
+
version: 3.1.3
|
|
159
159
|
type: :development
|
|
160
160
|
prerelease: false
|
|
161
161
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -165,7 +165,7 @@ dependencies:
|
|
|
165
165
|
version: '3.1'
|
|
166
166
|
- - ">="
|
|
167
167
|
- !ruby/object:Gem::Version
|
|
168
|
-
version: 3.1.
|
|
168
|
+
version: 3.1.3
|
|
169
169
|
- !ruby/object:Gem::Dependency
|
|
170
170
|
name: ruby-progressbar
|
|
171
171
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -209,7 +209,7 @@ dependencies:
|
|
|
209
209
|
version: '2.0'
|
|
210
210
|
- - ">="
|
|
211
211
|
- !ruby/object:Gem::Version
|
|
212
|
-
version: 2.0.
|
|
212
|
+
version: 2.0.2
|
|
213
213
|
type: :development
|
|
214
214
|
prerelease: false
|
|
215
215
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -219,31 +219,10 @@ dependencies:
|
|
|
219
219
|
version: '2.0'
|
|
220
220
|
- - ">="
|
|
221
221
|
- !ruby/object:Gem::Version
|
|
222
|
-
version: 2.0.
|
|
223
|
-
- !ruby/object:Gem::Dependency
|
|
224
|
-
name: rspec-pending_for
|
|
225
|
-
requirement: !ruby/object:Gem::Requirement
|
|
226
|
-
requirements:
|
|
227
|
-
- - "~>"
|
|
228
|
-
- !ruby/object:Gem::Version
|
|
229
|
-
version: '0.0'
|
|
230
|
-
- - ">="
|
|
231
|
-
- !ruby/object:Gem::Version
|
|
232
|
-
version: 0.0.17
|
|
233
|
-
type: :development
|
|
234
|
-
prerelease: false
|
|
235
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
236
|
-
requirements:
|
|
237
|
-
- - "~>"
|
|
238
|
-
- !ruby/object:Gem::Version
|
|
239
|
-
version: '0.0'
|
|
240
|
-
- - ">="
|
|
241
|
-
- !ruby/object:Gem::Version
|
|
242
|
-
version: 0.0.17
|
|
222
|
+
version: 2.0.2
|
|
243
223
|
description: "\U0001F372 Versions are good. Versions are cool. Versions will win."
|
|
244
224
|
email:
|
|
245
225
|
- floss@galtzo.com
|
|
246
|
-
- oauth-ruby@googlegroups.com
|
|
247
226
|
executables: []
|
|
248
227
|
extensions: []
|
|
249
228
|
extra_rdoc_files:
|
|
@@ -292,11 +271,11 @@ homepage: https://github.com/ruby-oauth/version_gem
|
|
|
292
271
|
licenses:
|
|
293
272
|
- MIT
|
|
294
273
|
metadata:
|
|
295
|
-
homepage_uri: https://
|
|
296
|
-
source_code_uri: https://github.com/ruby-oauth/version_gem/tree/v1.1.
|
|
297
|
-
changelog_uri: https://github.com/ruby-oauth/version_gem/blob/v1.1.
|
|
274
|
+
homepage_uri: https://structuredmerge.org
|
|
275
|
+
source_code_uri: https://github.com/ruby-oauth/version_gem/tree/v1.1.12
|
|
276
|
+
changelog_uri: https://github.com/ruby-oauth/version_gem/blob/v1.1.12/CHANGELOG.md
|
|
298
277
|
bug_tracker_uri: https://github.com/ruby-oauth/version_gem/issues
|
|
299
|
-
documentation_uri: https://www.rubydoc.info/gems/version_gem/1.1.
|
|
278
|
+
documentation_uri: https://www.rubydoc.info/gems/version_gem/1.1.12
|
|
300
279
|
funding_uri: https://github.com/sponsors/pboling
|
|
301
280
|
wiki_uri: https://github.com/ruby-oauth/version_gem/wiki
|
|
302
281
|
news_uri: https://www.railsbling.com/tags/version_gem
|
metadata.gz.sig
CHANGED
|
Binary file
|