rubocop-lts 4.0.2 → 6.0.0

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: 43c41c58b1cac5af2eaac7a682ca86506fdacce9f24ef55b1755ee89d94d2d9a
4
- data.tar.gz: b1a992b5f96328b0623a633c50590f090ac42398eefdf90d77d43f1aae50310a
3
+ metadata.gz: cdc57ff924443e323668afd30781c7c2bd9cf10318be133fc908bc6caa41f985
4
+ data.tar.gz: 8d69824945c2ceb29b44a6214806ca511e558e62c2e12926f99d78d144eab45f
5
5
  SHA512:
6
- metadata.gz: e5d50c3a7230ff970901b94aaae9e2b8c0b6285a88217d8d2594b574720e237039f0acd99716a2066eea6d7741fdab827ca4ce1f10269fc4fee78351c50b3e10
7
- data.tar.gz: bd53b895bcc84fbda63b84b24c74d8bd49337240bc91c422f2b9ba395e23d07fcfafaeb44a1346ca175c164d206b2b746036633953c83a6c43d966d076a9de25
6
+ metadata.gz: 8a7d93ba923ed987ceb06703bf5d905edd60dd3d84b38a5b60abab7ed8eaccdc297f788b94c3fd656a039c04556eb21365ac7fee1d1bcd27c43381488c36cb60
7
+ data.tar.gz: ab065392312aa46111806fbf3d2102db08a099d9e44ff2f7f6f6e16ea30172f3cacf9881b8a2e11c941f50980eafafb92bfda52d4a597d2ca07e6cb6e06988d1
data/CHANGELOG.md CHANGED
@@ -13,6 +13,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
13
13
 
14
14
  ### Removed
15
15
 
16
+ ## [6.0.0] - 2022-05-23
17
+ ### Added
18
+ - Initial odd release supporting Ruby >= 2.1
19
+
20
+ ## [5.0.1] - 2022-05-23
21
+ ### Fixed
22
+ - Make rubocop config files load ruby specific config from relevant rubocop-ruby*_* gem
23
+
24
+ ## [5.0.0] - 2022-05-23
25
+ ### Added
26
+ - Initial odd release supporting Ruby ~> 2.1
27
+
16
28
  ## [4.0.2] - 2022-05-23
17
29
  ### Fixed
18
30
  - Make rubocop config files load ruby specific config from relevant rubocop-ruby*_* gem
@@ -75,7 +87,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
75
87
  ### Added
76
88
  - Initial odd release supporting Ruby ~> 1.9
77
89
 
78
- [Unreleased]: https://github.com/rubocop-lts/rubocop-lts/compare/v4.0.2...HEAD
90
+ [Unreleased]: https://github.com/rubocop-lts/rubocop-lts/compare/v6.0.0...HEAD
91
+ [6.0.0]: https://github.com/rubocop-lts/rubocop-lts/compare/v5.0.1...v6.0.0
92
+ [5.0.1]: https://github.com/rubocop-lts/rubocop-lts/compare/v5.0.0...v5.0.1
93
+ [5.0.0]: https://github.com/rubocop-lts/rubocop-lts/compare/v4.0.2...v5.0.0
79
94
  [4.0.2]: https://github.com/rubocop-lts/rubocop-lts/compare/v4.0.1...v4.0.2
80
95
  [4.0.1]: https://github.com/rubocop-lts/rubocop-lts/compare/v4.0.0...v4.0.1
81
96
  [4.0.0]: https://github.com/rubocop-lts/rubocop-lts/compare/v3.0.2...v4.0.0
data/README.md CHANGED
@@ -35,7 +35,7 @@ Projects that support a single version of Ruby (like many closed-source applicat
35
35
  Projects that support multiple versions of Ruby simultaneously (like many open-source applications and libraries) will use the [Even releases][even-release].
36
36
 
37
37
  <!-- FIND VERSION -->
38
- **This README is for the even release of `rubocop-lts` supporting Ruby >= 2.0.0.**
38
+ **This README is for the even release of `rubocop-lts` supporting Ruby >= 2.1.0.**
39
39
 
40
40
  [odd-release]: https://github.com/rubocop-lts/rubocop-lts#odd-major-release
41
41
  [even-release]: https://github.com/rubocop-lts/rubocop-lts#even-major-release
@@ -202,7 +202,7 @@ Add this line to your application's Gemfile:
202
202
 
203
203
  <!-- FIND VERSION -->
204
204
  ```ruby
205
- gem 'rubocop-lts', '~> 4.0', require: false
205
+ gem 'rubocop-lts', '~> 6.0', require: false
206
206
  ```
207
207
 
208
208
  And then execute:
@@ -329,7 +329,7 @@ For example:
329
329
 
330
330
  <!-- FIND VERSION -->
331
331
  ```ruby
332
- spec.add_dependency "rubocop-lts", "~> 4.0"
332
+ spec.add_dependency "rubocop-lts", "~> 6.0"
333
333
  ```
334
334
 
335
335
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Rubocop
4
4
  module Lts
5
- VERSION = "4.0.2".freeze
5
+ VERSION = "6.0.0".freeze
6
6
  end
7
7
  end
data/rubocop-lts.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  inherit_gem:
2
- rubocop-ruby2_0: rubocop.yml
2
+ rubocop-ruby2_1: rubocop.yml
3
3
 
4
4
  # Removed as of 0.80.0
5
5
  # braces setting is for compatibility with Ruby 2.7+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-lts
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.2
4
+ version: 6.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Boling
@@ -11,19 +11,19 @@ cert_chain: []
11
11
  date: 2022-05-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: rubocop-ruby2_0
14
+ name: rubocop-ruby2_1
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 1.0.5
19
+ version: 1.0.4
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.0.5
26
+ version: 1.0.4
27
27
  description: Rubocop LTS - Chaos Reduction In a Bottle
28
28
  email:
29
29
  - peter.boling@gmail.com
@@ -49,10 +49,10 @@ licenses:
49
49
  - MIT
50
50
  metadata:
51
51
  homepage_uri: https://github.com/rubocop-lts/rubocop-lts
52
- source_code_uri: https://github.com/rubocop-lts/rubocop-lts/tree/v4.0.2
53
- changelog_uri: https://github.com/rubocop-lts/rubocop-lts/blob/v4.0.2/CHANGELOG.md
52
+ source_code_uri: https://github.com/rubocop-lts/rubocop-lts/tree/v6.0.0
53
+ changelog_uri: https://github.com/rubocop-lts/rubocop-lts/blob/v6.0.0/CHANGELOG.md
54
54
  bug_tracker_uri: https://github.com/rubocop-lts/rubocop-lts/issues
55
- documentation_uri: https://www.rubydoc.info/gems/rubocop-lts/4.0.2
55
+ documentation_uri: https://www.rubydoc.info/gems/rubocop-lts/6.0.0
56
56
  wiki_uri: https://github.com/rubocop-lts/rubocop-lts/wiki
57
57
  rubygems_mfa_required: 'true'
58
58
  post_install_message:
@@ -63,7 +63,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
63
63
  requirements:
64
64
  - - ">="
65
65
  - !ruby/object:Gem::Version
66
- version: 2.0.0
66
+ version: 2.1.0
67
67
  - - "<"
68
68
  - !ruby/object:Gem::Version
69
69
  version: '3.2'