gitmoji-regex 2.0.12 → 2.0.13
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 +20 -1
- data/LICENSE.md +1 -1
- data/README.md +4 -2
- data/lib/gitmoji/regex/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +15 -15
- 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: cb90595ae009b8fd7567c66b0afe337114a892cd075a22278480809c1b35f651
|
|
4
|
+
data.tar.gz: 563b9a6c607a8be9765641b90be65617b0f37c2dcccb05704809914393461cd2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 71f07c396a8c739cf19992067d82e1522374250fa72e8ff36c7541aea8b06d845f4106a04b4d0edcee98031dad61c4906480311e796f4fb2d35b9ae31456fa2b
|
|
7
|
+
data.tar.gz: e48acb00fc16e2db08760fc8207f8683df087aa4dd323ab9e759613474a3bc076e3bdc604ad2d07b190ab766f5c6a22ad9853015a9b91fa57f59f618a74819c3
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -30,6 +30,23 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
30
30
|
|
|
31
31
|
### Security
|
|
32
32
|
|
|
33
|
+
## [2.0.13] - 2026-09-11
|
|
34
|
+
|
|
35
|
+
- TAG: [v2.0.13][2.0.13t]
|
|
36
|
+
- COVERAGE: 100.00% -- 58/58 lines in 3 files
|
|
37
|
+
- BRANCH COVERAGE: 100.00% -- 4/4 branches in 3 files
|
|
38
|
+
- 100.00% documented
|
|
39
|
+
|
|
40
|
+
### Changed
|
|
41
|
+
|
|
42
|
+
- [kc] kettle-jem/prepare: updated 9 project files:
|
|
43
|
+
- dependencies (9)
|
|
44
|
+
|
|
45
|
+
- [kc] kettle-jem/template: updated 6 project files:
|
|
46
|
+
- code and tests (1)
|
|
47
|
+
- dependencies (4)
|
|
48
|
+
- other (1)
|
|
49
|
+
|
|
33
50
|
## [2.0.12] - 2026-08-12
|
|
34
51
|
|
|
35
52
|
- TAG: [v2.0.12][2.0.12t]
|
|
@@ -366,7 +383,9 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
366
383
|
|
|
367
384
|
- Initial release
|
|
368
385
|
|
|
369
|
-
[Unreleased]: https://github.com/galtzo-floss/gitmoji-regex/compare/v2.0.
|
|
386
|
+
[Unreleased]: https://github.com/galtzo-floss/gitmoji-regex/compare/v2.0.13...HEAD
|
|
387
|
+
[2.0.13]: https://github.com/galtzo-floss/gitmoji-regex/compare/v2.0.12...v2.0.13
|
|
388
|
+
[2.0.13t]: https://github.com/galtzo-floss/gitmoji-regex/releases/tag/v2.0.13
|
|
370
389
|
[2.0.12]: https://github.com/galtzo-floss/gitmoji-regex/compare/v2.0.11...v2.0.12
|
|
371
390
|
[2.0.12t]: https://github.com/galtzo-floss/gitmoji-regex/releases/tag/v2.0.12
|
|
372
391
|
[2.0.11]: https://github.com/galtzo-floss/gitmoji-regex/compare/v2.0.10...v2.0.11
|
data/LICENSE.md
CHANGED
data/README.md
CHANGED
|
@@ -99,7 +99,9 @@ The _amazing_ test matrix is powered by the kettle-dev stack.
|
|
|
99
99
|
|
|
100
100
|
</details>
|
|
101
101
|
|
|
102
|
-
### Enterprise Support
|
|
102
|
+
### Enterprise Support
|
|
103
|
+
|
|
104
|
+
[](https://tidelift.com/subscription/pkg/rubygems-gitmoji-regex?utm_source=rubygems-gitmoji-regex&utm_medium=referral&utm_campaign=readme)
|
|
103
105
|
|
|
104
106
|
Available as part of the Tidelift Subscription.
|
|
105
107
|
|
|
@@ -291,7 +293,7 @@ See [LICENSE.md][📄license] for the official copyright notice.
|
|
|
291
293
|
<summary>Copyright holders</summary>
|
|
292
294
|
|
|
293
295
|
- Copyright (c) 2022-2023, 2025-2026 Peter H. Boling
|
|
294
|
-
- Copyright (c) 2025
|
|
296
|
+
- Copyright (c) 2025 Annibelle Boling
|
|
295
297
|
|
|
296
298
|
</details>
|
|
297
299
|
|
|
@@ -5,7 +5,7 @@ module Gitmoji
|
|
|
5
5
|
# Version namespace for this gem.
|
|
6
6
|
module Version
|
|
7
7
|
# Current gem version.
|
|
8
|
-
VERSION = "2.0.
|
|
8
|
+
VERSION = "2.0.13"
|
|
9
9
|
end
|
|
10
10
|
# Current gem version exposed at the traditional constant location.
|
|
11
11
|
VERSION = Version::VERSION # Traditional Constant Location
|
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gitmoji-regex
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.13
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter H. Boling
|
|
8
|
-
-
|
|
8
|
+
- Annibelle Boling
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain:
|
|
11
11
|
- |
|
|
@@ -64,20 +64,20 @@ dependencies:
|
|
|
64
64
|
requirements:
|
|
65
65
|
- - "~>"
|
|
66
66
|
- !ruby/object:Gem::Version
|
|
67
|
-
version: '3.
|
|
67
|
+
version: '3.1'
|
|
68
68
|
- - ">="
|
|
69
69
|
- !ruby/object:Gem::Version
|
|
70
|
-
version: 3.0
|
|
70
|
+
version: 3.1.0
|
|
71
71
|
type: :development
|
|
72
72
|
prerelease: false
|
|
73
73
|
version_requirements: !ruby/object:Gem::Requirement
|
|
74
74
|
requirements:
|
|
75
75
|
- - "~>"
|
|
76
76
|
- !ruby/object:Gem::Version
|
|
77
|
-
version: '3.
|
|
77
|
+
version: '3.1'
|
|
78
78
|
- - ">="
|
|
79
79
|
- !ruby/object:Gem::Version
|
|
80
|
-
version: 3.0
|
|
80
|
+
version: 3.1.0
|
|
81
81
|
- !ruby/object:Gem::Dependency
|
|
82
82
|
name: bundler-audit
|
|
83
83
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -155,7 +155,7 @@ dependencies:
|
|
|
155
155
|
version: '3.2'
|
|
156
156
|
- - ">="
|
|
157
157
|
- !ruby/object:Gem::Version
|
|
158
|
-
version: 3.2.
|
|
158
|
+
version: 3.2.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.2'
|
|
166
166
|
- - ">="
|
|
167
167
|
- !ruby/object:Gem::Version
|
|
168
|
-
version: 3.2.
|
|
168
|
+
version: 3.2.3
|
|
169
169
|
- !ruby/object:Gem::Dependency
|
|
170
170
|
name: kettle-test
|
|
171
171
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -175,7 +175,7 @@ dependencies:
|
|
|
175
175
|
version: '2.0'
|
|
176
176
|
- - ">="
|
|
177
177
|
- !ruby/object:Gem::Version
|
|
178
|
-
version: 2.0.
|
|
178
|
+
version: 2.0.21
|
|
179
179
|
type: :development
|
|
180
180
|
prerelease: false
|
|
181
181
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -185,7 +185,7 @@ dependencies:
|
|
|
185
185
|
version: '2.0'
|
|
186
186
|
- - ">="
|
|
187
187
|
- !ruby/object:Gem::Version
|
|
188
|
-
version: 2.0.
|
|
188
|
+
version: 2.0.21
|
|
189
189
|
- !ruby/object:Gem::Dependency
|
|
190
190
|
name: turbo_tests2
|
|
191
191
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -195,7 +195,7 @@ dependencies:
|
|
|
195
195
|
version: '3.2'
|
|
196
196
|
- - ">="
|
|
197
197
|
- !ruby/object:Gem::Version
|
|
198
|
-
version: 3.2.
|
|
198
|
+
version: 3.2.7
|
|
199
199
|
type: :development
|
|
200
200
|
prerelease: false
|
|
201
201
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -205,7 +205,7 @@ dependencies:
|
|
|
205
205
|
version: '3.2'
|
|
206
206
|
- - ">="
|
|
207
207
|
- !ruby/object:Gem::Version
|
|
208
|
-
version: 3.2.
|
|
208
|
+
version: 3.2.7
|
|
209
209
|
- !ruby/object:Gem::Dependency
|
|
210
210
|
name: ruby-progressbar
|
|
211
211
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -377,10 +377,10 @@ licenses:
|
|
|
377
377
|
- MIT
|
|
378
378
|
metadata:
|
|
379
379
|
homepage_uri: https://gitmoji-regex.galtzo.com
|
|
380
|
-
source_code_uri: https://github.com/galtzo-floss/gitmoji-regex/tree/v2.0.
|
|
381
|
-
changelog_uri: https://github.com/galtzo-floss/gitmoji-regex/blob/v2.0.
|
|
380
|
+
source_code_uri: https://github.com/galtzo-floss/gitmoji-regex/tree/v2.0.13
|
|
381
|
+
changelog_uri: https://github.com/galtzo-floss/gitmoji-regex/blob/v2.0.13/CHANGELOG.md
|
|
382
382
|
bug_tracker_uri: https://github.com/galtzo-floss/gitmoji-regex/issues
|
|
383
|
-
documentation_uri: https://www.rubydoc.info/gems/gitmoji-regex/2.0.
|
|
383
|
+
documentation_uri: https://www.rubydoc.info/gems/gitmoji-regex/2.0.13
|
|
384
384
|
funding_uri: https://github.com/sponsors/pboling
|
|
385
385
|
wiki_uri: https://github.com/galtzo-floss/gitmoji-regex/wiki
|
|
386
386
|
news_uri: https://www.railsbling.com/tags/gitmoji-regex
|
metadata.gz.sig
CHANGED
|
Binary file
|