ruby_git 0.3.5 → 0.3.6
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 +10 -23
- data/.release-please-manifest.json +1 -1
- data/CHANGELOG.md +12 -0
- data/lib/ruby_git/version.rb +1 -1
- data/release-please-config.json +1 -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: 7bcb191c36fedc350022fcc895d95c33ae96903e3154acc4d289b0cdb01b8078
|
4
|
+
data.tar.gz: af5e459bce99053a239d1fb6da6376fc4df3609c8e95f9059d490a578716e84c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: baa4727ff238bd5efdc70f95919e203dd9552c7109f1398193ee1a909788516ead998eb03d72bd0131ae7fde44b681650386aba68627c018bf39c5dc140f8792
|
7
|
+
data.tar.gz: 0dd9357dd4521393b3e4e947162f6d53eb96d6e44d833a1f8e17878507f14bf3c7f70e8516eabdc64b72ee7974f6495e0ae454f8d8e6a3a6fa11090a205a5af0
|
data/.commitlintrc.yml
CHANGED
@@ -4,30 +4,17 @@ 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
|
-
body-leading-blank: [2,
|
16
|
-
footer-leading-blank: [2,
|
17
|
-
type-enum: [
|
18
|
-
2,
|
19
|
-
'always',
|
20
|
-
[
|
21
|
-
'build',
|
22
|
-
'ci',
|
23
|
-
'chore',
|
24
|
-
'docs',
|
25
|
-
'feat',
|
26
|
-
'fix',
|
27
|
-
'perf',
|
28
|
-
'refactor',
|
29
|
-
'revert',
|
30
|
-
'style',
|
31
|
-
'test'
|
32
|
-
]
|
33
|
-
]
|
18
|
+
body-leading-blank: [2, always]
|
19
|
+
footer-leading-blank: [2, always]
|
20
|
+
type-enum: [2, always, [build, ci, chore, docs, feat, fix, perf, refactor, revert, style, test]]
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## [0.3.6](https://github.com/main-branch/ruby_git/compare/v0.3.5...v0.3.6) (2025-04-17)
|
4
|
+
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
* Tell release-please create release PRs as a normal PR instead of a draft ([933cf37](https://github.com/main-branch/ruby_git/commit/933cf37aa3eff213c872831e8931d6eac72eba17))
|
9
|
+
|
10
|
+
|
11
|
+
### Other Changes
|
12
|
+
|
13
|
+
* Reformat .commitlintrc.yml to be consistent with other projects ([f4f91d3](https://github.com/main-branch/ruby_git/commit/f4f91d38dc5315eddb4dea1fbf6bc71ba065488d))
|
14
|
+
|
3
15
|
## [0.3.5](https://github.com/main-branch/ruby_git/compare/v0.3.4...v0.3.5) (2025-04-17)
|
4
16
|
|
5
17
|
|
data/lib/ruby_git/version.rb
CHANGED
data/release-please-config.json
CHANGED
@@ -8,7 +8,7 @@
|
|
8
8
|
"version-file": "lib/ruby_git/version.rb",
|
9
9
|
"bump-minor-pre-major": true,
|
10
10
|
"bump-patch-for-minor-pre-major": true,
|
11
|
-
"draft":
|
11
|
+
"draft": false,
|
12
12
|
"prerelease": false,
|
13
13
|
"include-component-in-tag": false,
|
14
14
|
"pull-request-title-pattern": "chore: release v${version}",
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby_git
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- James Couball
|
@@ -295,8 +295,8 @@ metadata:
|
|
295
295
|
allowed_push_host: https://rubygems.org
|
296
296
|
homepage_uri: https://github.com/main-branch/ruby_git
|
297
297
|
source_code_uri: https://github.com/main-branch/ruby_git
|
298
|
-
documentation_uri: https://rubydoc.info/gems/ruby_git/0.3.
|
299
|
-
changelog_uri: https://rubydoc.info/gems/ruby_git/0.3.
|
298
|
+
documentation_uri: https://rubydoc.info/gems/ruby_git/0.3.6
|
299
|
+
changelog_uri: https://rubydoc.info/gems/ruby_git/0.3.6/file/CHANGELOG.md
|
300
300
|
rubygems_mfa_required: 'true'
|
301
301
|
rdoc_options: []
|
302
302
|
require_paths:
|