version_boss 0.2.2 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1b7af9f57ff22ab5cbfd9910ab26dc2afc1d3e3f932175bb0a45aa39edcdbdec
4
- data.tar.gz: 00f58efa666a63dc5f748f7d4d276b9504a9a8e70ef80431e023a1d10a1fed3b
3
+ metadata.gz: a0a241d145064ba69d50feb3146fb574738d3101b48cd01111798a1796d58089
4
+ data.tar.gz: d41057f284de8dcfbb944ecf63cf4f8ced5efb586cec3ac2068b7eff5b7d17f9
5
5
  SHA512:
6
- metadata.gz: aae7199611713e46c842e118e123b12bc8abd0f1dcdef200b1a151f0604e5359161f2d012fc5ac08029cfb81046a07d9038c2e96d6cc02449c1135e553010cd2
7
- data.tar.gz: 28eb03b88efaeb8482362110d3417f8f3834a74b4f0fc19e132a0700fb0f5472b516e87bd248fa7f7215dab5f1a9ea1630b9a8d8361567cbb81beee5ad446d4b
6
+ metadata.gz: c7eb8cecaf76519acf9c8079890eb60b997caea37a24513a4b43c64dc5b54f4741499e62a264d0771ec2bab8d7161354b4ddaf11e21a84a59ae4f78a754d027d
7
+ data.tar.gz: 236708041d47c489d1e13cf16ca9f7cafd7b4957f3045471484f57b4df544556626b125522e48ef62b5f48e7990a6b86dcc244ce4f9bb09747a6f256149ddfaf
data/.commitlintrc.yml CHANGED
@@ -4,13 +4,34 @@ extends: '@commitlint/config-conventional'
4
4
  rules:
5
5
  # See: https://commitlint.js.org/reference/rules.html
6
6
  #
7
- # Rules are made up by a name and a configuration array. The configuration array contains:
7
+ # Rules are made up by a name and a configuration array. The configuration
8
+ # array contains:
8
9
  #
9
- # * Severity [0..2]: 0 disable rule, 1 warning if violated, or 2 error if violated
10
+ # * Severity [0..2]: 0 disable rule, 1 warning if violated, or 2 error if
11
+ # violated
10
12
  # * Applicability [always|never]: never inverts the rule
11
- # * Value: value to use for this rule
13
+ # * Value: value to use for this rule (if applicable)
12
14
  #
13
- # Run `npx commitlint --print-config` to see the current setting for all rules.
15
+ # Run `npx commitlint --print-config` to see the current setting for all
16
+ # rules.
14
17
  #
15
- body-leading-blank: [2, 'always']
16
- footer-leading-blank: [2, 'always']
18
+ header-max-length: [2, always, 100] # Header can not exceed 100 chars
19
+
20
+ type-case: [2, always, lower-case] # Type must be lower case
21
+ type-empty: [2, never] # Type must not be empty
22
+
23
+ # Supported conventional commit types
24
+ type-enum: [2, always, [build, ci, chore, docs, feat, fix, perf, refactor, revert, style, test]]
25
+
26
+ scope-case: [2, always, lower-case] # Scope must be lower case
27
+
28
+ # Error if subject is one of these cases (encourages lower-case)
29
+ subject-case: [2, never, [sentence-case, start-case, pascal-case, upper-case]]
30
+ subject-empty: [2, never] # Subject must not be empty
31
+ subject-full-stop: [2, never, "."] # Subject must not end with a period
32
+
33
+ body-leading-blank: [2, always] # Body must have a blank line before it
34
+ body-max-line-length: [2, always, 100] # Body lines can not exceed 100 chars
35
+
36
+ footer-leading-blank: [2, always] # Footer must have a blank line before it
37
+ footer-max-line-length: [2, always, 100] # Footer lines can not exceed 100 chars
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "0.2.2"
2
+ ".": "0.2.4"
3
3
  }
data/CHANGELOG.md CHANGED
@@ -23,6 +23,20 @@ Changes since v0.1.0:
23
23
  * baabc32 Auto correct new rubocop offenses
24
24
  * 8f74384 Release v0.1.0
25
25
 
26
+ ## [0.2.4](https://github.com/main-branch/version_boss/compare/v0.2.3...v0.2.4) (2026-04-24)
27
+
28
+
29
+ ### Other Changes
30
+
31
+ * **dependencies:** Update dependencies for all GitHub Actions workflows ([4051ebb](https://github.com/main-branch/version_boss/commit/4051ebbecaf1b59f4dd5d15644158607623e2870))
32
+
33
+ ## [0.2.3](https://github.com/main-branch/version_boss/compare/v0.2.2...v0.2.3) (2025-04-18)
34
+
35
+
36
+ ### Other Changes
37
+
38
+ * Configure release-please to includes all changes in the CHANGELOG ([d6a43fa](https://github.com/main-branch/version_boss/commit/d6a43fa34a27fd532f9166b59740293a8775358c))
39
+
26
40
  ## [0.2.2](https://github.com/main-branch/version_boss/compare/v0.2.1...v0.2.2) (2025-04-17)
27
41
 
28
42
 
@@ -2,5 +2,5 @@
2
2
 
3
3
  module VersionBoss
4
4
  # The current version of this gem
5
- VERSION = '0.2.2'
5
+ VERSION = '0.2.4'
6
6
  end
@@ -10,7 +10,21 @@
10
10
  "bump-patch-for-minor-pre-major": true,
11
11
  "draft": false,
12
12
  "prerelease": false,
13
- "include-component-in-tag": false
13
+ "include-component-in-tag": false,
14
+ "pull-request-title-pattern": "chore: release v${version}",
15
+ "changelog-sections": [
16
+ { "type": "feat", "section": "Features", "hidden": false },
17
+ { "type": "fix", "section": "Bug Fixes", "hidden": false },
18
+ { "type": "build", "section": "Other Changes", "hidden": false },
19
+ { "type": "chore", "section": "Other Changes", "hidden": false },
20
+ { "type": "ci", "section": "Other Changes", "hidden": false },
21
+ { "type": "docs", "section": "Other Changes", "hidden": false },
22
+ { "type": "perf", "section": "Other Changes", "hidden": false },
23
+ { "type": "refactor", "section": "Other Changes", "hidden": false },
24
+ { "type": "revert", "section": "Other Changes", "hidden": false },
25
+ { "type": "style", "section": "Other Changes", "hidden": false },
26
+ { "type": "test", "section": "Other Changes", "hidden": false }
27
+ ]
14
28
  }
15
29
  },
16
30
  "plugins": [
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: version_boss
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Couball
@@ -250,8 +250,8 @@ metadata:
250
250
  allowed_push_host: https://rubygems.org
251
251
  homepage_uri: https://github.com/main-branch/version_boss
252
252
  source_code_uri: https://github.com/main-branch/version_boss
253
- documentation_uri: https://rubydoc.info/gems/version_boss/0.2.2
254
- changelog_uri: https://rubydoc.info/gems/version_boss/0.2.2/file/CHANGELOG.md
253
+ documentation_uri: https://rubydoc.info/gems/version_boss/0.2.4
254
+ changelog_uri: https://rubydoc.info/gems/version_boss/0.2.4/file/CHANGELOG.md
255
255
  rubygems_mfa_required: 'true'
256
256
  rdoc_options: []
257
257
  require_paths:
@@ -269,7 +269,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
269
269
  requirements:
270
270
  - 'Platform: Mac, Linux, or Windows'
271
271
  - 'Ruby: MRI 3.1 or later, TruffleRuby 24 or later, or JRuby 9.4 or later'
272
- rubygems_version: 3.6.7
272
+ rubygems_version: 4.0.6
273
273
  specification_version: 4
274
274
  summary: A Gem to parse and compare SemVer versions AND increment versions for Ruby
275
275
  Gems