sheets_v4 0.10.1 → 0.10.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: b51bff3e6d1c400ce384b9f7c52d51616848d0f88c82898919381292c12c2af3
4
- data.tar.gz: a6a1fed0f9eb4e7c7766eecc122524212fc961b4d472a30472a9e841f4f2e1f1
3
+ metadata.gz: aefe69a91a7358cbf1d1c779d8afe5a04f6491d88cd9ea2b7c83b4892c2798b1
4
+ data.tar.gz: b49156a126e16c9e28e8da72bdf1fb69e540409af6f615a9d901fa328f8cafe2
5
5
  SHA512:
6
- metadata.gz: 765b6e15a54ae5532fdd2587fcd932b82ac600d1f89eb4c01fcd2ba6b851b557ae20874b4afab3e41490cb03614b1a452944ccde560bf6569f30cd2a912ba378
7
- data.tar.gz: 3937faab4bc0ec7ca688df33cab1358bece7b29bfd1cddb6ca2ecc320c47a6038f2ea071a70c69bf9c6250460b7e5f9c81d745ab0eb2f4f5f17eff3410e956b3
6
+ metadata.gz: 18bd2148b4340882c2292a21483a7ac5467abe575c9c58fee97b40f75c891cc5bf3da784b908ff8f53d16e4a6b67c5b98de70764a1f0650b974235a257ac5526
7
+ data.tar.gz: c96d0b454abceda2bcfa7c359242e9932159d7585d7f4efe27751e9b7c52ddae71e9fdcf263cb8326dcf8e6372c8f63409f8c03d7487b4d1ff25a3a4b4cfbd7d
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.10.1"
2
+ ".": "0.10.3"
3
3
  }
data/CHANGELOG.md CHANGED
@@ -4,6 +4,20 @@ Changes for each release are listed in this file.
4
4
 
5
5
  This project adheres to [Semantic Versioning](https://semver.org/) for its releases.
6
6
 
7
+ ## [0.10.3](https://github.com/main-branch/sheets_v4/compare/v0.10.2...v0.10.3) (2025-04-18)
8
+
9
+
10
+ ### Other Changes
11
+
12
+ * Configure release-please to includes all changes in the CHANGELOG ([7e943c4](https://github.com/main-branch/sheets_v4/commit/7e943c46fb851b15418ca3f95844bdc25424ad99))
13
+
14
+ ## [0.10.2](https://github.com/main-branch/sheets_v4/compare/v0.10.1...v0.10.2) (2025-04-17)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * Do not trigger build workflows after merging to main or for release PRs ([92d3279](https://github.com/main-branch/sheets_v4/commit/92d32796a9ca032a0805ed0ee83d6a9feecd237d))
20
+
7
21
  ## [0.10.1](https://github.com/main-branch/sheets_v4/compare/v0.10.0...v0.10.1) (2025-04-16)
8
22
 
9
23
 
@@ -2,5 +2,5 @@
2
2
 
3
3
  module SheetsV4
4
4
  # The version of this gem
5
- VERSION = '0.10.1'
5
+ VERSION = '0.10.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: sheets_v4
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.1
4
+ version: 0.10.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Couball
@@ -324,8 +324,8 @@ metadata:
324
324
  rubygems_mfa_required: 'true'
325
325
  homepage_uri: https://github.com/main-branch/sheets_v4
326
326
  source_code_uri: https://github.com/main-branch/sheets_v4
327
- documentation_uri: https://rubydoc.info/gems/sheets_v4/0.10.1
328
- changelog_uri: https://rubydoc.info/gems/sheets_v4/0.10.1/file/CHANGELOG.md
327
+ documentation_uri: https://rubydoc.info/gems/sheets_v4/0.10.3
328
+ changelog_uri: https://rubydoc.info/gems/sheets_v4/0.10.3/file/CHANGELOG.md
329
329
  rdoc_options: []
330
330
  require_paths:
331
331
  - lib