version_gem 1.1.12 → 1.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 036c36e35a1bba8fb12b5a2e8ad2fb960070487462f56a906e07abc1f269a8f0
4
- data.tar.gz: 49e719e30a2e23747b5ca0f262926da0f3dbac329cdb9bf441c063fbca985565
3
+ metadata.gz: 62705aeb54e19419230583cca299f86e742b94ea7b6d4f949fa0f2c3abb790ee
4
+ data.tar.gz: 0b287df7d9c93527228d92209716d125fb35893f67ddcb50c72835ed119e10c2
5
5
  SHA512:
6
- metadata.gz: 100e2c8fd944bdbcbb4630b1a6cdf1f18c1e84812a7660d0d96b919b9f0a82f4fa7ece31fa44980c2c4e73622be5d7efc7f8af2bc455af90135d8c6bfad0b5bf
7
- data.tar.gz: d7f870ceea407bf03a615ba0fe27deedcf4db724bd7a0f4380a6d8d4dbfacbc28462a28820cf339b7f8986d2a09ea86318ce0624a33b8928c5983ee5ecd8cd5e
6
+ metadata.gz: 30c974bee52cb418b7c8aac41f5354c3cff1f7531dca5e4ffa1726d64389e73be3803c07b8ccb1738da1094486c3b07970edbd0cb585e46457ed2bb1bf9585b4
7
+ data.tar.gz: 275c991c0e972b7c3cd85c5e2f146be261d741b2e86ea88a01e1dc80938d93180173c88fdfc725c292621fa0f4a287e31b8be87eaa5559fc73427d3806a2fc3b
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -30,6 +30,41 @@ Please file a bug if you notice a violation of semantic versioning.
30
30
 
31
31
  ### Security
32
32
 
33
+ ## [1.1.14] - 2026-07-13
34
+
35
+ - TAG: [v1.1.14][1.1.14t]
36
+ - COVERAGE: 100.00% -- 119/119 lines in 8 files
37
+ - BRANCH COVERAGE: 100.00% -- 4/4 branches in 8 files
38
+ - 85.19% documented
39
+
40
+ ### Fixed
41
+
42
+ - Package configured license files in gem release file lists.
43
+
44
+ ## [1.1.13] - 2026-06-22
45
+
46
+ - TAG: [v1.1.13][1.1.13t]
47
+ - COVERAGE: 48.74% -- 58/119 lines in 8 files
48
+ - BRANCH COVERAGE: 0.00% -- 0/4 branches in 8 files
49
+ - 85.19% documented
50
+
51
+ ### Added
52
+
53
+ - Added support for JRuby 10.1 and TruffleRuby 34.0.
54
+
55
+ ### Changed
56
+
57
+ - Retemplated project metadata and CI/development automation with `kettle-jem` v7.0.0.
58
+
59
+ ### Fixed
60
+
61
+ - Corrected RubyGems homepage metadata to point at the gem documentation site.
62
+ - Corrected persisted Open Collective metadata to use the `ruby-oauth`
63
+ collective.
64
+
65
+ - Updated the SimpleCov bootstrap so `.simplecov` remains configuration-only
66
+ and coverage starts before the test harness can load `version_gem`.
67
+
33
68
  ## [1.1.12] - 2026-06-14
34
69
 
35
70
  - TAG: [v1.1.12][1.1.12t]
@@ -321,7 +356,11 @@ Please file a bug if you notice a violation of semantic versioning.
321
356
 
322
357
  - Initial release, with basic version parsing API (@pboling)
323
358
 
324
- [Unreleased]: https://github.com/ruby-oauth/version_gem/compare/v1.1.12...HEAD
359
+ [Unreleased]: https://github.com/ruby-oauth/version_gem/compare/v1.1.14...HEAD
360
+ [1.1.14]: https://github.com/ruby-oauth/version_gem/compare/v1.1.13...v1.1.14
361
+ [1.1.14t]: https://github.com/ruby-oauth/version_gem/releases/tag/v1.1.14
362
+ [1.1.13]: https://github.com/ruby-oauth/version_gem/compare/v1.1.12...v1.1.13
363
+ [1.1.13t]: https://github.com/ruby-oauth/version_gem/releases/tag/v1.1.13
325
364
  [1.1.12]: https://github.com/ruby-oauth/version_gem/compare/v1.1.11...v1.1.12
326
365
  [1.1.12t]: https://github.com/ruby-oauth/version_gem/releases/tag/v1.1.12
327
366
  [1.1.11]: https://github.com/ruby-oauth/version_gem/compare/v1.1.10...v1.1.11
data/CONTRIBUTING.md CHANGED
@@ -109,14 +109,14 @@ Git diff driver setup
109
109
  - Git hosting forges generally ignore external diff drivers, so pull request views may still show raw textual diffs even when local `git diff` uses semantic drivers.
110
110
 
111
111
  ```console
112
- K_JEM_TEMPLATING=true bundle exec kettle-jem install
112
+ K_JEM_TEMPLATING=true kettle-jem install
113
113
  ```
114
114
 
115
115
  Troubleshooting Git diffs
116
116
  - Use `git diff --no-ext-diff` to compare against Git's built-in diff output.
117
117
  - Use `git diff --no-textconv` when a textconv projection obscures the raw file bytes you need to inspect.
118
118
  - If Git reports a missing `smorg-*` executable, rerun `bundle install` and the setup command above, then check `git config --local --get-regexp '^diff\.smorg-'`.
119
- - To remove managed local entries, run `K_JEM_TEMPLATING=true bundle exec kettle-jem install --undo`; remove global command registrations with `git config --global --unset-all diff.smorg-ruby.command`.
119
+ - To remove managed local entries, run `K_JEM_TEMPLATING=true kettle-jem install --undo`; remove global command registrations with `git config --global --unset-all diff.smorg-ruby.command`.
120
120
 
121
121
  For a quick starting point, this repository’s `mise.toml` defines the shared defaults, and `.env.local` can override them locally. Copy `.env.local.example` to `.env.local`, use `KEY=value` lines, and either activate `mise` in your shell or run commands through `mise exec -C /path/to/project -- ...`.
122
122
 
@@ -131,9 +131,12 @@ toolchain, and it may be higher than the gemspec runtime floor.
131
131
  They are created and updated with the commands:
132
132
 
133
133
  ```console
134
- bin/rake appraisal:update
134
+ bin/rake appraisal:generate
135
135
  ```
136
136
 
137
+ Use `bin/rake appraisal:update` when you intentionally need to resolve fresh
138
+ appraisal locks.
139
+
137
140
  If you need to reset all gemfiles/*.gemfile.lock files:
138
141
 
139
142
  ```console
data/FUNDING.md CHANGED
@@ -6,7 +6,7 @@ Many paths lead to being a sponsor or a backer of this project. Are you on such
6
6
 
7
7
  [![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal]
8
8
 
9
- [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate on Polar][🖇polar-img]][🖇polar] [![Donate to my FLOSS efforts at ko-fi.com][🖇kofi-img]][🖇kofi] [![Donate to my FLOSS efforts using Patreon][🖇patreon-img]][🖇patreon]
9
+ [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate to my FLOSS efforts at ko-fi.com][🖇kofi-img]][🖇kofi]
10
10
 
11
11
  [⛳liberapay-img]: https://img.shields.io/liberapay/goal/pboling.svg?logo=liberapay&color=a51611&style=flat
12
12
  [⛳liberapay]: https://liberapay.com/pboling/donate
@@ -16,12 +16,8 @@ Many paths lead to being a sponsor or a backer of this project. Are you on such
16
16
  [🖇osc-sponsors-i]: https://opencollective.com/ruby-oauth/sponsors/badge.svg?style=flat
17
17
  [🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
18
18
  [🖇sponsor]: https://github.com/sponsors/pboling
19
- [🖇polar-img]: https://img.shields.io/badge/polar-donate-a51611.svg?style=flat
20
- [🖇polar]: https://polar.sh/pboling
21
19
  [🖇kofi-img]: https://img.shields.io/badge/ko--fi-%E2%9C%93-a51611.svg?style=flat
22
20
  [🖇kofi]: https://ko-fi.com/pboling
23
- [🖇patreon-img]: https://img.shields.io/badge/patreon-donate-a51611.svg?style=flat
24
- [🖇patreon]: https://patreon.com/galtzo
25
21
  [🖇buyme-small-img]: https://img.shields.io/badge/buy_me_a_coffee-%E2%9C%93-a51611.svg?style=flat
26
22
  [🖇buyme]: https://www.buymeacoffee.com/pboling
27
23
  [🖇paypal-img]: https://img.shields.io/badge/donate-paypal-a51611.svg?style=flat&logo=paypal
data/MIT.md ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ See [LICENSE.md](LICENSE.md) for the copyright notice.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md CHANGED
@@ -10,9 +10,9 @@
10
10
 
11
11
  `if ci_badges.map(&:color).all? { it == "green"}` 👇️ send money so I can do more of this. FLOSS maintenance is now my full-time job.
12
12
 
13
- [![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate on Polar][🖇polar-img]][🖇polar] [![Donate at ko-fi.com][🖇kofi-img]][🖇kofi]
13
+ [![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate at ko-fi.com][🖇kofi-img]][🖇kofi]
14
14
 
15
- <details>
15
+ <details markdown="1">
16
16
  <summary>👣 How will this project approach the September 2025 hostile takeover of RubyGems? 🚑️</summary>
17
17
 
18
18
  I've summarized my thoughts in [this blog post](https://dev.to/galtzo/hostile-takeover-of-rubygems-my-thoughts-5hlo).
@@ -59,9 +59,9 @@ For more discussion about this [see issue #2](https://gitlab.com/oauth-xx/versio
59
59
 
60
60
  | Tokens to Remember | [![Gem name][⛳️name-img]][⛳️gem-name] [![Gem namespace][⛳️namespace-img]][⛳️gem-namespace] |
61
61
  |-------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
62
- | Works with JRuby | [![JRuby 9.2 Compat][💎jruby-9.2i]][🚎jruby-9.2-wf] [![JRuby 9.3 Compat][💎jruby-9.3i]][🚎jruby-9.3-wf] <br/> [![JRuby 9.4 Compat][💎jruby-9.4i]][🚎jruby-9.4-wf] [![JRuby current Compat][💎jruby-c-i]][🚎10-j-wf] [![JRuby HEAD Compat][💎jruby-headi]][🚎3-hd-wf]|
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
- | 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]|
62
+ | Works with JRuby | [![JRuby 9.2 Compat][💎jruby-9.2i]][🚎jruby-9.2-wf] [![JRuby 9.3 Compat][💎jruby-9.3i]][🚎jruby-9.3-wf] <br/> [![JRuby 9.4 Compat][💎jruby-9.4i]][🚎jruby-9.4-wf] [![JRuby 10.0 Compat][💎jruby-10.0i]][🚎jruby-10.0-wf] [![JRuby current Compat][💎jruby-c-i]][🚎10-j-wf] [![JRuby HEAD Compat][💎jruby-headi]][🚎3-hd-wf]|
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 33.0 Compat][💎truby-33.0i]][🚎truby-33.0-wf] [![Truffle Ruby current Compat][💎truby-c-i]][🚎9-t-wf] [![Truffle Ruby HEAD Compat][💎truby-headi]][🚎3-hd-wf]|
64
+ | Works with MRI Ruby 4 | [![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
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] |
@@ -80,9 +80,25 @@ This test floor is configured by `ruby.test_minimum` in `.kettle-jem.yml` and
80
80
  may be higher than the gem's runtime compatibility floor when legacy Rubies are
81
81
  not practical for the current toolchain.
82
82
 
83
- | 🚚 _Amazing_ test matrix was brought to you by | 🔎 appraisal2 🔎 and the color 💚 green 💚 |
84
- |------------------------------------------------|--------------------------------------------------------|
85
- | 👟 Check it out! | [github.com/appraisal-rb/appraisal2][💎appraisal2] ✨ |
83
+ <a href="https://github.com/kettle-dev"><img alt="kettle-dev Logo by Aboling0, CC BY-SA 4.0" src="https://logos.galtzo.com/assets/images/kettle-dev/avatar-128px.svg" width="14%" align="right"/></a>
84
+
85
+ The _amazing_ test matrix is powered by the kettle-dev stack.
86
+
87
+ <details markdown="1">
88
+ <summary>How kettle-dev manages complexity in tests</summary>
89
+
90
+ | Gem | Source | Role | Daily download rank |
91
+ |-----|--------|------|---------------------|
92
+ | [appraisal2](https://bestgems.org/gems/appraisal2) | [GitHub](https://github.com/appraisal-rb/appraisal2) | multi-dependency Appraisal matrix generation | [![Daily download rank for appraisal2](https://img.shields.io/gem/rd/appraisal2.svg?style=flat-square)](https://bestgems.org/gems/appraisal2) |
93
+ | [appraisal2-rubocop](https://bestgems.org/gems/appraisal2-rubocop) | [GitHub](https://github.com/appraisal-rb/appraisal2-rubocop) | RuboCop Appraisal generator integration | [![Daily download rank for appraisal2-rubocop](https://img.shields.io/gem/rd/appraisal2-rubocop.svg?style=flat-square)](https://bestgems.org/gems/appraisal2-rubocop) |
94
+ | [kettle-dev](https://bestgems.org/gems/kettle-dev) | [GitHub](https://github.com/kettle-dev/kettle-dev) | development, release, and CI workflow tooling | [![Daily download rank for kettle-dev](https://img.shields.io/gem/rd/kettle-dev.svg?style=flat-square)](https://bestgems.org/gems/kettle-dev) |
95
+ | [kettle-jem](https://bestgems.org/gems/kettle-jem) | [GitHub](https://github.com/kettle-dev/kettle-jem) | Appraisals & CI workflow templates | [![Daily download rank for kettle-jem](https://img.shields.io/gem/rd/kettle-jem.svg?style=flat-square)](https://bestgems.org/gems/kettle-jem) |
96
+ | [kettle-soup-cover](https://bestgems.org/gems/kettle-soup-cover) | [GitHub](https://github.com/kettle-dev/kettle-soup-cover) | SimpleCov coverage policy and reporting | [![Daily download rank for kettle-soup-cover](https://img.shields.io/gem/rd/kettle-soup-cover.svg?style=flat-square)](https://bestgems.org/gems/kettle-soup-cover) |
97
+ | [kettle-test](https://bestgems.org/gems/kettle-test) | [GitHub](https://github.com/kettle-dev/kettle-test) | standard test runner and coverage harness | [![Daily download rank for kettle-test](https://img.shields.io/gem/rd/kettle-test.svg?style=flat-square)](https://bestgems.org/gems/kettle-test) |
98
+ | [rubocop-lts](https://bestgems.org/gems/rubocop-lts) | [GitHub](https://github.com/rubocop-lts/rubocop-lts) | Ruby-version-aware linting | [![Daily download rank for rubocop-lts](https://img.shields.io/gem/rd/rubocop-lts.svg?style=flat-square)](https://bestgems.org/gems/rubocop-lts) |
99
+ | [turbo_tests2](https://bestgems.org/gems/turbo_tests2) | [GitHub](https://github.com/galtzo-floss/turbo_tests2) | parallel test execution | [![Daily download rank for turbo_tests2](https://img.shields.io/gem/rd/turbo_tests2.svg?style=flat-square)](https://bestgems.org/gems/turbo_tests2) |
100
+
101
+ </details>
86
102
 
87
103
  ### Federated DVCS
88
104
 
@@ -443,7 +459,7 @@ NOTE: [kettle-readme-backers][kettle-readme-backers] updates this list every day
443
459
  No sponsors yet. Be the first!
444
460
  <!-- OPENCOLLECTIVE-ORGANIZATIONS:END -->
445
461
 
446
- [kettle-readme-backers]: https://github.com/ruby-oauth/version_gem/blob/main/exe/kettle-readme-backers
462
+ [kettle-readme-backers]: https://github.com/ruby-oauth/version_gem/blob/main/bin/kettle-readme-backers
447
463
 
448
464
  ### Another way to support open-source
449
465
 
@@ -455,7 +471,7 @@ I’m developing a new library, [floss_funding][🖇floss-funding-gem], designed
455
471
 
456
472
  **[Floss-Funding.dev][🖇floss-funding.dev]: 👉️ No network calls. 👉️ No tracking. 👉️ No oversight. 👉️ Minimal crypto hashing. 💡 Easily disabled nags**
457
473
 
458
- [![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate on Polar][🖇polar-img]][🖇polar] [![Donate to my FLOSS efforts at ko-fi.com][🖇kofi-img]][🖇kofi] [![Donate to my FLOSS efforts using Patreon][🖇patreon-img]][🖇patreon]
474
+ [![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate to my FLOSS efforts at ko-fi.com][🖇kofi-img]][🖇kofi]
459
475
 
460
476
  ## 🔐 Security
461
477
 
@@ -501,7 +517,7 @@ Made with [contributors-img][🖐contrib-rocks].
501
517
 
502
518
  Also see GitLab Contributors: [https://gitlab.com/ruby-oauth/version_gem/-/graphs/main][🚎contributors-gl]
503
519
 
504
- <details>
520
+ <details markdown="1">
505
521
  <summary>⭐️ Star History</summary>
506
522
 
507
523
  <a href="https://star-history.com/ruby-oauth/version_gem&Date">
@@ -597,12 +613,8 @@ Thanks for RTFM. ☺️
597
613
  [🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
598
614
  [🖇sponsor-bottom-img]: https://img.shields.io/badge/Sponsor_Me!-pboling-blue?style=for-the-badge&logo=github
599
615
  [🖇sponsor]: https://github.com/sponsors/pboling
600
- [🖇polar-img]: https://img.shields.io/badge/polar-donate-a51611.svg?style=flat
601
- [🖇polar]: https://polar.sh/pboling
602
616
  [🖇kofi-img]: https://img.shields.io/badge/ko--fi-%E2%9C%93-a51611.svg?style=flat
603
617
  [🖇kofi]: https://ko-fi.com/pboling
604
- [🖇patreon-img]: https://img.shields.io/badge/patreon-donate-a51611.svg?style=flat
605
- [🖇patreon]: https://patreon.com/galtzo
606
618
  [🖇buyme-small-img]: https://img.shields.io/badge/buy_me_a_coffee-%E2%9C%93-a51611.svg?style=flat
607
619
  [🖇buyme-img]: https://img.buymeacoffee.com/button-api/?text=Buy%20me%20a%20latte&emoji=&slug=pboling&button_colour=FFDD00&font_colour=000000&font_family=Cookie&outline_colour=000000&coffee_colour=ffffff
608
620
  [🖇buyme]: https://www.buymeacoffee.com/pboling
@@ -692,11 +704,13 @@ Thanks for RTFM. ☺️
692
704
  [🚎jruby-9.2-wf]: https://github.com/ruby-oauth/version_gem/actions/workflows/jruby-9.2.yml
693
705
  [🚎jruby-9.3-wf]: https://github.com/ruby-oauth/version_gem/actions/workflows/jruby-9.3.yml
694
706
  [🚎jruby-9.4-wf]: https://github.com/ruby-oauth/version_gem/actions/workflows/jruby-9.4.yml
707
+ [🚎jruby-10.0-wf]: https://github.com/ruby-oauth/version_gem/actions/workflows/jruby-10.0.yml
695
708
  [🚎truby-22.3-wf]: https://github.com/ruby-oauth/version_gem/actions/workflows/truffleruby-22.3.yml
696
709
  [🚎truby-23.0-wf]: https://github.com/ruby-oauth/version_gem/actions/workflows/truffleruby-23.0.yml
697
710
  [🚎truby-23.1-wf]: https://github.com/ruby-oauth/version_gem/actions/workflows/truffleruby-23.1.yml
698
711
  [🚎truby-24.2-wf]: https://github.com/ruby-oauth/version_gem/actions/workflows/truffleruby-24.2.yml
699
712
  [🚎truby-25.0-wf]: https://github.com/ruby-oauth/version_gem/actions/workflows/truffleruby-25.0.yml
713
+ [🚎truby-33.0-wf]: https://github.com/ruby-oauth/version_gem/actions/workflows/truffleruby-33.0.yml
700
714
  [🚎2-cov-wf]: https://github.com/ruby-oauth/version_gem/actions/workflows/coverage.yml
701
715
  [🚎2-cov-wfi]: https://github.com/ruby-oauth/version_gem/actions/workflows/coverage.yml/badge.svg
702
716
  [🚎3-hd-wf]: https://github.com/ruby-oauth/version_gem/actions/workflows/heads.yml
@@ -728,7 +742,6 @@ Thanks for RTFM. ☺️
728
742
  [💎ruby-3.2i]: https://img.shields.io/badge/Ruby-3.2-CC342D?style=for-the-badge&logo=ruby&logoColor=white
729
743
  [💎ruby-3.3i]: https://img.shields.io/badge/Ruby-3.3-CC342D?style=for-the-badge&logo=ruby&logoColor=white
730
744
  [💎ruby-3.4i]: https://img.shields.io/badge/Ruby-3.4-CC342D?style=for-the-badge&logo=ruby&logoColor=white
731
- [💎ruby-4.0i]: https://img.shields.io/badge/Ruby-4.0-CC342D?style=for-the-badge&logo=ruby&logoColor=white
732
745
  [💎ruby-c-i]: https://img.shields.io/badge/Ruby-current-CC342D?style=for-the-badge&logo=ruby&logoColor=green
733
746
  [💎ruby-headi]: https://img.shields.io/badge/Ruby-HEAD-CC342D?style=for-the-badge&logo=ruby&logoColor=blue
734
747
  [💎truby-22.3i]: https://img.shields.io/badge/Truffle_Ruby-22.3-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
@@ -736,10 +749,13 @@ Thanks for RTFM. ☺️
736
749
  [💎truby-23.1i]: https://img.shields.io/badge/Truffle_Ruby-23.1-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
737
750
  [💎truby-24.2i]: https://img.shields.io/badge/Truffle_Ruby-24.2-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
738
751
  [💎truby-25.0i]: https://img.shields.io/badge/Truffle_Ruby-25.0-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
752
+ [💎truby-33.0i]: https://img.shields.io/badge/Truffle_Ruby-33.0-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
739
753
  [💎truby-c-i]: https://img.shields.io/badge/Truffle_Ruby-current-34BCB1?style=for-the-badge&logo=ruby&logoColor=green
754
+ [💎truby-headi]: https://img.shields.io/badge/Truffle_Ruby-HEAD-34BCB1?style=for-the-badge&logo=ruby&logoColor=blue
740
755
  [💎jruby-9.2i]: https://img.shields.io/badge/JRuby-9.2-FBE742?style=for-the-badge&logo=ruby&logoColor=red
741
756
  [💎jruby-9.3i]: https://img.shields.io/badge/JRuby-9.3-FBE742?style=for-the-badge&logo=ruby&logoColor=red
742
757
  [💎jruby-9.4i]: https://img.shields.io/badge/JRuby-9.4-FBE742?style=for-the-badge&logo=ruby&logoColor=red
758
+ [💎jruby-10.0i]: https://img.shields.io/badge/JRuby-10.0-FBE742?style=for-the-badge&logo=ruby&logoColor=red
743
759
  [💎jruby-c-i]: https://img.shields.io/badge/JRuby-current-FBE742?style=for-the-badge&logo=ruby&logoColor=green
744
760
  [💎jruby-headi]: https://img.shields.io/badge/JRuby-HEAD-FBE742?style=for-the-badge&logo=ruby&logoColor=blue
745
761
  [🤝gh-issues]: https://github.com/ruby-oauth/version_gem/issues
@@ -768,7 +784,7 @@ Thanks for RTFM. ☺️
768
784
  [📌gitmoji]: https://gitmoji.dev
769
785
  [📌gitmoji-img]: https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
770
786
  [🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
771
- [🧮kloc-img]: https://img.shields.io/badge/KLOC-0.058-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
787
+ [🧮kloc-img]: https://img.shields.io/badge/KLOC-0.119-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
772
788
  [🔐security]: https://github.com/ruby-oauth/version_gem/blob/main/SECURITY.md
773
789
  [🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
774
790
  [📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
@@ -796,7 +812,7 @@ Thanks for RTFM. ☺️
796
812
  | Package | version_gem |
797
813
  | Description | 🍲 Versions are good. Versions are cool. Versions will win. |
798
814
  | Homepage | https://github.com/ruby-oauth/version_gem |
799
- | Source | https://github.com/ruby-oauth/version_gem/tree/v1.1.11 |
815
+ | Source | https://github.com/ruby-oauth/version_gem |
800
816
  | License | `MIT` |
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 |
817
+ | Funding | https://github.com/sponsors/pboling, https://ko-fi.com/pboling, https://liberapay.com/pboling/donate, https://opencollective.com/ruby-oauth, https://thanks.dev/u/gh/pboling, https://tidelift.com/funding/github/rubygems/version_gem, https://www.buymeacoffee.com/pboling |
802
818
  <!-- kettle-jem:metadata:end -->
@@ -2,7 +2,7 @@
2
2
 
3
3
  module VersionGem
4
4
  module Version
5
- VERSION = "1.1.12"
5
+ VERSION = "1.1.14"
6
6
  end
7
7
  VERSION = Version::VERSION # Traditional Constant Location
8
8
  end
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.12
4
+ version: 1.1.14
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.2'
47
+ version: '2.3'
48
48
  - - ">="
49
49
  - !ruby/object:Gem::Version
50
- version: 2.2.9
50
+ version: 2.3.2
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.2'
57
+ version: '2.3'
58
58
  - - ">="
59
59
  - !ruby/object:Gem::Version
60
- version: 2.2.9
60
+ version: 2.3.2
61
61
  - !ruby/object:Gem::Dependency
62
62
  name: bundler-audit
63
63
  requirement: !ruby/object:Gem::Requirement
@@ -115,7 +115,7 @@ dependencies:
115
115
  version: '3.1'
116
116
  - - ">="
117
117
  - !ruby/object:Gem::Version
118
- version: 3.1.2
118
+ version: 3.1.4
119
119
  type: :development
120
120
  prerelease: false
121
121
  version_requirements: !ruby/object:Gem::Requirement
@@ -125,7 +125,7 @@ dependencies:
125
125
  version: '3.1'
126
126
  - - ">="
127
127
  - !ruby/object:Gem::Version
128
- version: 3.1.2
128
+ version: 3.1.4
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.5
138
+ version: 2.0.10
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.5
148
+ version: 2.0.10
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.3
158
+ version: 3.1.7
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.3
168
+ version: 3.1.7
169
169
  - !ruby/object:Gem::Dependency
170
170
  name: ruby-progressbar
171
171
  requirement: !ruby/object:Gem::Requirement
@@ -189,7 +189,7 @@ dependencies:
189
189
  version: '1.0'
190
190
  - - ">="
191
191
  - !ruby/object:Gem::Version
192
- version: 1.0.3
192
+ version: 1.0.6
193
193
  type: :development
194
194
  prerelease: false
195
195
  version_requirements: !ruby/object:Gem::Requirement
@@ -199,7 +199,7 @@ dependencies:
199
199
  version: '1.0'
200
200
  - - ">="
201
201
  - !ruby/object:Gem::Version
202
- version: 1.0.3
202
+ version: 1.0.6
203
203
  - !ruby/object:Gem::Dependency
204
204
  name: gitmoji-regex
205
205
  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.2
212
+ version: 2.0.4
213
213
  type: :development
214
214
  prerelease: false
215
215
  version_requirements: !ruby/object:Gem::Requirement
@@ -219,7 +219,7 @@ dependencies:
219
219
  version: '2.0'
220
220
  - - ">="
221
221
  - !ruby/object:Gem::Version
222
- version: 2.0.2
222
+ version: 2.0.4
223
223
  description: "\U0001F372 Versions are good. Versions are cool. Versions will win."
224
224
  email:
225
225
  - floss@galtzo.com
@@ -242,6 +242,7 @@ files:
242
242
  - CONTRIBUTING.md
243
243
  - FUNDING.md
244
244
  - LICENSE.md
245
+ - MIT.md
245
246
  - README.md
246
247
  - RUBOCOP.md
247
248
  - SECURITY.md
@@ -271,11 +272,11 @@ homepage: https://github.com/ruby-oauth/version_gem
271
272
  licenses:
272
273
  - MIT
273
274
  metadata:
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
275
+ homepage_uri: https://version-gem.galtzo.com
276
+ source_code_uri: https://github.com/ruby-oauth/version_gem/tree/v1.1.14
277
+ changelog_uri: https://github.com/ruby-oauth/version_gem/blob/v1.1.14/CHANGELOG.md
277
278
  bug_tracker_uri: https://github.com/ruby-oauth/version_gem/issues
278
- documentation_uri: https://www.rubydoc.info/gems/version_gem/1.1.12
279
+ documentation_uri: https://www.rubydoc.info/gems/version_gem/1.1.14
279
280
  funding_uri: https://github.com/sponsors/pboling
280
281
  wiki_uri: https://github.com/ruby-oauth/version_gem/wiki
281
282
  news_uri: https://www.railsbling.com/tags/version_gem
metadata.gz.sig CHANGED
Binary file