discovery_v1 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 580ae6ef082efe59cdb62d74cc0b01d31a44aa2ca1834de0d969abef72739ae5
4
- data.tar.gz: ed14f37e2f76cdb7e68b9d6e22b763f1bef520962c19559e344dc20a595e6c3b
3
+ metadata.gz: b20557e819610334251248ad4851702e93b6c0d5915eed80474e30960d21a8d9
4
+ data.tar.gz: b082f30efebb6c78750d87700422fdb7fdfe4d418b66ebe0b07a4287e2c1c5fc
5
5
  SHA512:
6
- metadata.gz: d425ff4759c7edda63bdd5acecb81a0bad120616ae34207228f2a554e22e1369f6c445db789f4084cc84cba6cb532756e3299001d173fb4a11458b57186d9030
7
- data.tar.gz: e37603f2a16872e69d559d712dd49facb3f86e1122f3bfa86ed11421c1041e0f0f8f93d7c7700080071427fb03627c40535c98b6383626b86d421a4518a28989
6
+ metadata.gz: 998ee932e54852832ae465162642a1e99566c1b4e11b303be8afd9470d88ed13fe3669689beb3e3f5bf3bfe0f88f82b1f4e31759f3dcfed3a1dec437132d6a19
7
+ data.tar.gz: 74ecb0b17e0ac44ba8903b35400676e6294df35710aedd9f83c3b4d73516506154c599a91d0dc4d951fa31a6389d50699dcc69e403589f57de0a7304359bdac2
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.2.1"
2
+ ".": "0.2.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.2.3](https://github.com/main-branch/discovery_v1/compare/v0.2.2...v0.2.3) (2025-04-18)
8
+
9
+
10
+ ### Other Changes
11
+
12
+ * Configure release-please to includes all changes in the CHANGELOG ([0d258e2](https://github.com/main-branch/discovery_v1/commit/0d258e2179c837dcd07228c52bd62a6630ae5cce))
13
+
14
+ ## [0.2.2](https://github.com/main-branch/discovery_v1/compare/v0.2.1...v0.2.2) (2025-04-17)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * Do not trigger build workflows after merging to main or for release PRs ([edd8005](https://github.com/main-branch/discovery_v1/commit/edd80050002dc3ce678c3e529d0a6ea8509334f4))
20
+
7
21
  ## [0.2.1](https://github.com/main-branch/discovery_v1/compare/v0.2.0...v0.2.1) (2025-04-16)
8
22
 
9
23
 
@@ -2,5 +2,5 @@
2
2
 
3
3
  module DiscoveryV1
4
4
  # The version of this gem
5
- VERSION = '0.2.1'
5
+ VERSION = '0.2.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: discovery_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Couball
@@ -279,8 +279,8 @@ metadata:
279
279
  allowed_push_host: https://rubygems.org
280
280
  homepage_uri: https://github.com/main-branch/discovery_v1
281
281
  source_code_uri: https://github.com/main-branch/discovery_v1
282
- documentation_uri: https://rubydoc.info/gems/discovery_v1/0.2.1
283
- changelog_uri: https://rubydoc.info/gems/discovery_v1/0.2.1/file/CHANGELOG.md
282
+ documentation_uri: https://rubydoc.info/gems/discovery_v1/0.2.3
283
+ changelog_uri: https://rubydoc.info/gems/discovery_v1/0.2.3/file/CHANGELOG.md
284
284
  rubygems_mfa_required: 'true'
285
285
  rdoc_options: []
286
286
  require_paths: