drive_v3 0.3.2 → 0.3.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: f3583f88e9d033a4d8bd637d65980ff986cfa6288f6c4c4ddbc332fdd6e13ef4
4
- data.tar.gz: f8c3df20cbfcea764fb55950d962c7e1e3fdf8071ee443364004f0e0843d4f3a
3
+ metadata.gz: a6fa7e4cea71114bc4b0c7ccb1a322b428b2ce0b9aef3c98904a2b5576a60da2
4
+ data.tar.gz: f478cea23076267b37a371bb86598f196d481923c4fc72b21cc0be555f28a540
5
5
  SHA512:
6
- metadata.gz: c8cc8685879468f539f58b2ef59f1ba0fe30c040e4cfc6b41b0e005c5e771e699b4ec54eb829f9d90747f4080169b5a1c377ba557cda2a3a7552c26ce54f6dba
7
- data.tar.gz: 145efffb04e0e9782006290552911ad4730f47ac8c7b28e1134b8534e2771c92542832dfec56bc59aa3d611fc5ff1d44a5f4781d53b831b9f6179a11d63acddd
6
+ metadata.gz: 557797f14937f42f6597bd0917ef53ffb3eaa62908479a8ab107234d8e066118e7c3cdd4fc2afaf412757956f503309338d034938e3e69f72dd91a0f52b90778
7
+ data.tar.gz: 160a5ace0836a9cf22effaf70a5bc79b432135551058afb6884602e1dd93d416cc6cb776ed1b0b5abe4c6d0354efa145a4e5d255745a51f0837fe5d4be60cfc6
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.3.2"
2
+ ".": "0.3.3"
3
3
  }
data/CHANGELOG.md CHANGED
@@ -4,6 +4,13 @@ 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.3.3](https://github.com/main-branch/drive_v3/compare/v0.3.2...v0.3.3) (2025-04-18)
8
+
9
+
10
+ ### Other Changes
11
+
12
+ * Configure release-please to includes all changes in the CHANGELOG ([3d98ba9](https://github.com/main-branch/drive_v3/commit/3d98ba99aa540a6e9b012c8cdea7df7705a3206a))
13
+
7
14
  ## [0.3.2](https://github.com/main-branch/drive_v3/compare/v0.3.1...v0.3.2) (2025-04-17)
8
15
 
9
16
 
@@ -2,5 +2,5 @@
2
2
 
3
3
  module DriveV3
4
4
  # The version of this gem
5
- VERSION = '0.3.2'
5
+ VERSION = '0.3.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: drive_v3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Couball
@@ -314,8 +314,8 @@ metadata:
314
314
  rubygems_mfa_required: 'true'
315
315
  homepage_uri: https://github.com/main-branch/drive_v3
316
316
  source_code_uri: https://github.com/main-branch/drive_v3
317
- documentation_uri: https://rubydoc.info/gems/drive_v3/0.3.2
318
- changelog_uri: https://rubydoc.info/gems/drive_v3/0.3.2/file/CHANGELOG.md
317
+ documentation_uri: https://rubydoc.info/gems/drive_v3/0.3.3
318
+ changelog_uri: https://rubydoc.info/gems/drive_v3/0.3.3/file/CHANGELOG.md
319
319
  rdoc_options: []
320
320
  require_paths:
321
321
  - lib