simplecov-rspec 0.4.2 → 0.4.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: d3859bae4a7ca3615a70b85ecb7fbe6693ef9acd48bd70458a7487b4d58d8815
4
- data.tar.gz: 6122ddfd08b1566bc2b27f4e46cdc5d64714d796a2c46c26b41ed4cc192cc85a
3
+ metadata.gz: ce63ea74fa12c0809b94f73c6af2e698180c443ec36c2d731edb9990268d9e3e
4
+ data.tar.gz: 2e9e5b310eda37b14550c0bc4c25ae4e068755275c2388eeae2a94d5b7823c9c
5
5
  SHA512:
6
- metadata.gz: ebdb3f63ed023bce8ce812f8055fa099b00eb28fc811ce3c988060de0a3a82f290381cac064d271f603b50409337de8803895e91be6eff4a8290c23af02a7c9f
7
- data.tar.gz: 82cd1ac5aa92c65c0c1418a853cd6c622d63b8e68e367dfce68c9e5a4efae26139d6b7f0770bb3da63dcc7b97d0830cf04e96ffbb66099f329725929949236a4
6
+ metadata.gz: 4c60ced018da2f3658d95983137036e9284ef20bd654e403a2d472c3501a35b0ad153a6b9f72f4665863a5196c6dd0da94522fcb8a527363cc4e6b1adf1ce59b
7
+ data.tar.gz: 996e559d2fc92099a8094da7b80278c0c2fc9cbee878cbc25d38a7037bfbebcb157a883beb287a0c42dcac64b671033ec1011d3024d41a116db9faaebb0d5df6
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.4.2"
2
+ ".": "0.4.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.4.3](https://github.com/main-branch/simplecov-rspec/compare/v0.4.2...v0.4.3) (2025-04-18)
8
+
9
+
10
+ ### Other Changes
11
+
12
+ * Configure release-please to includes all changes in the CHANGELOG ([8efc084](https://github.com/main-branch/simplecov-rspec/commit/8efc0843a8c25a1da07ac5f521a3a17808de9be5))
13
+
7
14
  ## [0.4.2](https://github.com/main-branch/simplecov-rspec/compare/v0.4.1...v0.4.2) (2025-04-17)
8
15
 
9
16
 
@@ -3,6 +3,6 @@
3
3
  module Simplecov
4
4
  class Rspec
5
5
  # This gem's version
6
- VERSION = '0.4.2'
6
+ VERSION = '0.4.3'
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: simplecov-rspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 0.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Couball
@@ -230,8 +230,8 @@ metadata:
230
230
  allowed_push_host: https://rubygems.org
231
231
  homepage_uri: https://github.com/main-branch/simplecov-rspec
232
232
  source_code_uri: https://github.com/main-branch/simplecov-rspec
233
- documentation_uri: https://rubydoc.info/gems/simplecov-rspec/0.4.2
234
- changelog_uri: https://rubydoc.info/gems/simplecov-rspec/0.4.2/file/CHANGELOG.md
233
+ documentation_uri: https://rubydoc.info/gems/simplecov-rspec/0.4.3
234
+ changelog_uri: https://rubydoc.info/gems/simplecov-rspec/0.4.3/file/CHANGELOG.md
235
235
  rubygems_mfa_required: 'true'
236
236
  rdoc_options: []
237
237
  require_paths: