bundler-gem_bytes 0.2.3 → 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: 2ee84435b5dbc4349dbdf9f87c825cf933dba8509a33acb7ac2f8a65516cdd91
4
- data.tar.gz: 0db994491848b0cd41a83ab1b7cd5dd176446571da8e9bd9d573015d08d81cb3
3
+ metadata.gz: 678f8a3dbc3a70a16108e9de42ef990aa02f15afb1590cd6ac014c9856ad6296
4
+ data.tar.gz: 6fda84fdd80848c7addf2c2a173fe1240ab51aed44df5beab7a86dc226d695c3
5
5
  SHA512:
6
- metadata.gz: a865449d239e5af18b17b6349d6e303f554661aacef7e5304a5863ae1c620a85e389fe8edd3838b70f15d7b29515885057b3c3a536d776f350ef4d582726c06a
7
- data.tar.gz: 12a4873de4fa57dfd396e0f272368a26e50220b1e6af767053fecd9feb0e95fc227de34905043e0beb1999010e618fad6849949dc421ee1e07cbdd52b937f41a
6
+ metadata.gz: 3595b40c8646412ec4ab01e3011b09119d517242d92cbae466a0935fdd02c54579014d0f20a3afbfd1d5c71a317178615f4326c4fea8aae15f086bc3af9688f8
7
+ data.tar.gz: 87a54ab4ad2e38fca9667bfca0445b375d1974cb9dab8b7af4210ec6b26e3ecf1eff78557bfd4a7f1d33f4d87c4499dfd51776b14d88d87adb272d3c7da77818
data/.commitlintrc.yml CHANGED
@@ -4,13 +4,35 @@ 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
38
+
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "0.2.3"
2
+ ".": "0.2.4"
3
3
  }
data/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@ All notable changes to the process_executer gem 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.4](https://github.com/main-branch/bundler-gem_bytes/compare/v0.2.3...v0.2.4) (2025-04-18)
9
+
10
+
11
+ ### Other Changes
12
+
13
+ * Configure release-please to includes all changes in the CHANGELOG ([69bc88d](https://github.com/main-branch/bundler-gem_bytes/commit/69bc88d882390bb702919c3f9dcb778afd2279ba))
14
+
8
15
  ## [0.2.3](https://github.com/main-branch/bundler-gem_bytes/compare/v0.2.2...v0.2.3) (2025-04-17)
9
16
 
10
17
 
@@ -3,6 +3,6 @@
3
3
  module Bundler
4
4
  module GemBytes
5
5
  # The version of this gem
6
- VERSION = '0.2.3'
6
+ VERSION = '0.2.4'
7
7
  end
8
8
  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: bundler-gem_bytes
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Couball
@@ -291,8 +291,8 @@ metadata:
291
291
  allowed_push_host: https://rubygems.org
292
292
  homepage_uri: https://github.com/main-branch/bundler-gem_bytes
293
293
  source_code_uri: https://github.com/main-branch/bundler-gem_bytes
294
- documentation_uri: https://rubydoc.info/gems/bundler-gem_bytes/0.2.3
295
- changelog_uri: https://rubydoc.info/gems/bundler-gem_bytes/0.2.3/file/CHANGELOG.md
294
+ documentation_uri: https://rubydoc.info/gems/bundler-gem_bytes/0.2.4
295
+ changelog_uri: https://rubydoc.info/gems/bundler-gem_bytes/0.2.4/file/CHANGELOG.md
296
296
  bug_tracker_uri: https://github.com/main-branch/bundler-gem_bytes/issues
297
297
  rubygems_mfa_required: 'true'
298
298
  rdoc_options: []