version_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 +4 -4
- data/.commitlintrc.yml +27 -6
- data/.release-please-manifest.json +1 -1
- data/CHANGELOG.md +14 -0
- data/lib/version_boss/version.rb +1 -1
- data/release-please-config.json +15 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 295c13ced323d143928d500d2885a0d1929e15ad763937a0f1a906c7b9f2cdb8
|
4
|
+
data.tar.gz: e028d7ba66e174bcbaa6f81b45be9f05fc50d647457a58161ed6c4bd8c3c9622
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0d5bdb9af3d9aec13bc203d9b4eb82dff8b25e338ff6925cde4ac447aff71967e9952c213f3eb51e3bbb87d8b11cda508a6f08b5ab856b9d1b5dfe368576d113
|
7
|
+
data.tar.gz: de2675af33a35e30873ec7914bd7197ab2acb2f75b3295ac59652af5a4bb67de78d6d470cbaa467a83bcc4528170990aed55719984db0b7901f67f7a1781ef8a
|
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
|
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
|
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
|
15
|
+
# Run `npx commitlint --print-config` to see the current setting for all
|
16
|
+
# rules.
|
14
17
|
#
|
15
|
-
|
16
|
-
|
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
|
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.3](https://github.com/main-branch/version_boss/compare/v0.2.2...v0.2.3) (2025-04-18)
|
27
|
+
|
28
|
+
|
29
|
+
### Other Changes
|
30
|
+
|
31
|
+
* Configure release-please to includes all changes in the CHANGELOG ([d6a43fa](https://github.com/main-branch/version_boss/commit/d6a43fa34a27fd532f9166b59740293a8775358c))
|
32
|
+
|
33
|
+
## [0.2.2](https://github.com/main-branch/version_boss/compare/v0.2.1...v0.2.2) (2025-04-17)
|
34
|
+
|
35
|
+
|
36
|
+
### Bug Fixes
|
37
|
+
|
38
|
+
* Do not trigger build workflows after merging to main or for release PRs ([1f2dd37](https://github.com/main-branch/version_boss/commit/1f2dd370492349112d7415af09fb4dc6ec90314e))
|
39
|
+
|
26
40
|
## [0.2.1](https://github.com/main-branch/version_boss/compare/v0.2.0...v0.2.1) (2025-04-16)
|
27
41
|
|
28
42
|
|
data/lib/version_boss/version.rb
CHANGED
data/release-please-config.json
CHANGED
@@ -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.
|
4
|
+
version: 0.2.3
|
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.
|
254
|
-
changelog_uri: https://rubydoc.info/gems/version_boss/0.2.
|
253
|
+
documentation_uri: https://rubydoc.info/gems/version_boss/0.2.3
|
254
|
+
changelog_uri: https://rubydoc.info/gems/version_boss/0.2.3/file/CHANGELOG.md
|
255
255
|
rubygems_mfa_required: 'true'
|
256
256
|
rdoc_options: []
|
257
257
|
require_paths:
|