rubocop-ruby3_1 1.1.0 → 1.1.1
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 +4 -4
- data/CHANGELOG.md +8 -1
- data/CONTRIBUTING.md +2 -1
- data/README.md +1 -1
- data/lib/rubocop/ruby3_1/version.rb +1 -1
- metadata +26 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3bad8f35285c5a6f51bdf4e57cf7e65c0ef0b4e4b6e2badf08e54792d95cbc46
|
|
4
|
+
data.tar.gz: 6dc960584c94ef6835e5aa5c60d9bea7681b68e0b8c584c9287373816b0f10c2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 79f08663a66c4b6379b991168e78d6d872d957b4a349a79a75f8837853df6dc4535e8fc04625eeeb4016861d50ca1a6e020122352db6983c98e8c1b84709482a
|
|
7
|
+
data.tar.gz: a149a3b742306d815640c1504acb481a3f8424adcd6c1e890b079ed7096846746145ca53e67a5ab277e5b1d6d2dc72d353e97cf0300717ab3f96088bbbba448c
|
data/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
10
10
|
### Fixed
|
|
11
11
|
### Removed
|
|
12
12
|
|
|
13
|
+
## [1.1.1] 2022-12-17
|
|
14
|
+
### Changed
|
|
15
|
+
* Update to rubocop ~> 1.40.0
|
|
16
|
+
* Improved CI workflows (still on GitHub)
|
|
17
|
+
|
|
13
18
|
## [1.1.0] 2022-12-7
|
|
14
19
|
### Changed
|
|
15
20
|
* Update to rubocop ~> 1.39.0
|
|
@@ -48,7 +53,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
48
53
|
### Added
|
|
49
54
|
* Initial release
|
|
50
55
|
|
|
51
|
-
[Unreleased]: https://gitlab.com/rubocop-lts/rubocop-ruby3_1/-/compare/v1.
|
|
56
|
+
[Unreleased]: https://gitlab.com/rubocop-lts/rubocop-ruby3_1/-/compare/v1.1.1...HEAD
|
|
57
|
+
[1.1.1]: https://gitlab.com/rubocop-lts/rubocop-ruby3_1/-/compare/v1.1.0...v1.1.1
|
|
58
|
+
[1.1.0]: https://gitlab.com/rubocop-lts/rubocop-ruby3_1/-/compare/v1.0.6...v1.1.0
|
|
52
59
|
[1.0.6]: https://gitlab.com/rubocop-lts/rubocop-ruby3_1/-/compare/v1.0.5...v1.0.6
|
|
53
60
|
[1.0.5]: https://gitlab.com/rubocop-lts/rubocop-ruby3_1/-/compare/v1.0.4...v1.0.5
|
|
54
61
|
[1.0.4]: https://gitlab.com/rubocop-lts/rubocop-ruby3_1/-/compare/v1.0.3...v1.0.4
|
data/CONTRIBUTING.md
CHANGED
|
@@ -16,7 +16,8 @@ To release a new version:
|
|
|
16
16
|
3. move the built gem to project root
|
|
17
17
|
4. run `bin/checksum` to create the missing SHA256 checksum
|
|
18
18
|
5. move the built gem back to `pkg/`
|
|
19
|
-
6.
|
|
19
|
+
6. commit the changes
|
|
20
|
+
7. run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org][rubygems].
|
|
20
21
|
|
|
21
22
|
NOTE: You will need to have a public key in `certs/`, and list your cert in the
|
|
22
23
|
`gemspec`, in order to sign the new release.
|
data/README.md
CHANGED
|
@@ -86,7 +86,7 @@ This gem requires no other gems. It depends on `rubocop`, but does not `require
|
|
|
86
86
|
|
|
87
87
|
Awareness of `rubocop`'s lack of [SemVer][semver] adherence isn't evenly dispersed in the Ruby community.
|
|
88
88
|
|
|
89
|
-
The
|
|
89
|
+
The RuboCop team [has real reasons](https://github.com/semver/semver/issues/317)
|
|
90
90
|
for [not following SemVer](https://github.com/rubocop/rubocop/issues/4243), but if you've
|
|
91
91
|
found this project it is possible those reasons are less important
|
|
92
92
|
than what brought you here for your context (e.g. running `rubocop` from command line).
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubocop-ruby3_1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter Boling
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-12-
|
|
11
|
+
date: 2022-12-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|
|
@@ -16,30 +16,44 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 1.
|
|
19
|
+
version: 1.40.0
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 1.
|
|
26
|
+
version: 1.40.0
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: rake
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
|
-
- - "
|
|
31
|
+
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '0'
|
|
33
|
+
version: '13.0'
|
|
34
34
|
type: :development
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
|
-
- - "
|
|
38
|
+
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: '0'
|
|
40
|
+
version: '13.0'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: rspec
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '3.12'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '3.12'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: yard
|
|
43
57
|
requirement: !ruby/object:Gem::Requirement
|
|
44
58
|
requirements:
|
|
45
59
|
- - ">="
|
|
@@ -74,10 +88,11 @@ licenses:
|
|
|
74
88
|
- MIT
|
|
75
89
|
metadata:
|
|
76
90
|
homepage_uri: https://github.com/rubocop-lts/rubocop-ruby3_1
|
|
77
|
-
source_code_uri: https://github.com/rubocop-lts/rubocop-ruby3_1/tree/v1.1.
|
|
78
|
-
changelog_uri: https://github.com/rubocop-lts/rubocop-ruby3_1/blob/v1.1.
|
|
91
|
+
source_code_uri: https://github.com/rubocop-lts/rubocop-ruby3_1/tree/v1.1.1
|
|
92
|
+
changelog_uri: https://github.com/rubocop-lts/rubocop-ruby3_1/blob/v1.1.1/CHANGELOG.md
|
|
79
93
|
bug_tracker_uri: https://github.com/rubocop-lts/rubocop-ruby3_1/issues
|
|
80
|
-
documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby3_1/1.1.
|
|
94
|
+
documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby3_1/1.1.1
|
|
95
|
+
funding_uri: https://liberapay.com/pboling
|
|
81
96
|
wiki_uri: https://github.com/rubocop-lts/rubocop-ruby3_1/wiki
|
|
82
97
|
rubygems_mfa_required: 'true'
|
|
83
98
|
post_install_message:
|