command_line_boss 0.2.1 → 0.2.3

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: 953b0a8bbd1c3fafad1ceee175d527921b73b8aed717d3bec37eeaa074187165
4
- data.tar.gz: 07acf7edbce04850432534d1f5a77dcf49eec5259eaba4ef583b09ac0883f68d
3
+ metadata.gz: 964893b0d766f758c1cf008533187cf9710c0c7d4d82b49f02be5b2a4da0db6a
4
+ data.tar.gz: edd16650636801251797ebe7bca261e0c9525ce043ee3a53cfb0a0e569065abe
5
5
  SHA512:
6
- metadata.gz: '0953f6521edd9113d7befa0231771d27f0395a6d487df9640e179e5bedaf152b7cb7d0bb4cb2d4dcaa299cdb3689035aa95ee1e4b2c06e4f821a94fac90224b4'
7
- data.tar.gz: 6dee4f58d3326609537c61af7d4628d1d824c3762afb0facba2e549c039730b10a7d82c1855e7a5555121a5614df1345cd4dc1697681a544972bc10b0c5d1da1
6
+ metadata.gz: 18d26418c48468de324224b882b8c826984846a12d066ef4216e0e8db328df9c80d353287b693fbf48806a1a6d6645cadc7c81c6bd77b1e0a65468d7bfb52ecc
7
+ data.tar.gz: beff5c6dfc2a209d1c53c4498c4c03fde09c0bb8dfaafb4886cc054bcbf6358b204ef81a075896fbc21cddf7198c38d8c2cd8ed7119249a78d914ca4eaf659b3
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.1"
2
+ ".": "0.2.3"
3
3
  }
data/CHANGELOG.md CHANGED
@@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.2.3](https://github.com/main-branch/command_line_boss/compare/v0.2.2...v0.2.3) (2025-04-18)
9
+
10
+
11
+ ### Other Changes
12
+
13
+ * Configure release-please to includes all changes in the CHANGELOG ([8d17cb3](https://github.com/main-branch/command_line_boss/commit/8d17cb3dbac1a66d43251d3eae463da62d82f2e3))
14
+
15
+ ## [0.2.2](https://github.com/main-branch/command_line_boss/compare/v0.2.1...v0.2.2) (2025-04-17)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * Do not trigger build workflows after merging to main or for release PRs ([a2471df](https://github.com/main-branch/command_line_boss/commit/a2471df6ef9efbed7cb45d56beef20033206d309))
21
+
8
22
  ## [0.2.1](https://github.com/main-branch/command_line_boss/compare/v0.2.0...v0.2.1) (2025-04-16)
9
23
 
10
24
 
@@ -2,5 +2,5 @@
2
2
 
3
3
  class CommandLineBoss
4
4
  # Gem version
5
- VERSION = '0.2.1'
5
+ VERSION = '0.2.3'
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: command_line_boss
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Couball
@@ -288,8 +288,8 @@ metadata:
288
288
  allowed_push_host: https://rubygems.org
289
289
  homepage_uri: https://github.com/main-branch/command_line_boss
290
290
  source_code_uri: https://github.com/main-branch/command_line_boss
291
- documentation_uri: https://rubydoc.info/gems/command_line_boss/0.2.1
292
- changelog_uri: https://rubydoc.info/gems/command_line_boss/0.2.1/file/CHANGELOG.md
291
+ documentation_uri: https://rubydoc.info/gems/command_line_boss/0.2.3
292
+ changelog_uri: https://rubydoc.info/gems/command_line_boss/0.2.3/file/CHANGELOG.md
293
293
  rubygems_mfa_required: 'true'
294
294
  rdoc_options: []
295
295
  require_paths: