rubocop-lts 7.0.1 → 8.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ab540fd765f7fc5667b086f3247fd1654512700a1bd557407c259096cfaa7381
4
- data.tar.gz: 2786f1466d669f87b82df9085daefb85a6123eba79ac35f3f7468deea0c3d519
3
+ metadata.gz: 04ce5ac98a54f9131fdc197e2fe99c8f4b11d47b016e972123d28c380d424071
4
+ data.tar.gz: 34ce30b2713624a3134cd002562d9c99329249f558c7cd83314c2f157141e5fa
5
5
  SHA512:
6
- metadata.gz: f30f6de126b5fb5951928f3ad28dfcc281ff89a8a152a7204e5abe15788860e1e42e21c5f1f96e13ff33e4b8df9565cf88a1ee97e1da6abd298ce71c3f193382
7
- data.tar.gz: cb78287f2e40d19551c139599027b58c0e07c0e8f684f233665ee5e23f6e84e86802dd3f9e1e640070e5860072c830a639c9657861ecb2eaa471367d5872809d
6
+ metadata.gz: dc86b4e3a30cebc9fd350ec03bf0fe1bcff2d3c717fe1848fe711958a9429287bab1e67f90236e0f17c9f70a9881e06020bbe2d8815e0cf0ca6188d2fb408bc3
7
+ data.tar.gz: b74a2db6ee5bc1850a32581e92a3c58997dc14299d6e5d0c550fd7f2f4ec4ca365b30d233822f1740d98333a77c9c07c14efe98f9121bdef27250d0f67f8ebca
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
+ ## [8.0.2] - 2022-06-09
17
+ ### Fixed
18
+ - Allow install up to Ruby < 4, which allows running against current Ruby HEAD @ 3.2-dev
19
+
20
+ ## [8.0.1] - 2022-06-09
21
+ ### Added
22
+ - Improve, and dry up documentation
23
+
24
+ ## [8.0.0] - 2022-05-23
25
+ ### Added
26
+ - Initial even release supporting Ruby >= 2.2
27
+
16
28
  ## [7.0.1] - 2022-06-08
17
29
  ### Added
18
30
  - Improve, and dry up documentation
@@ -125,7 +137,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
125
137
  ### Added
126
138
  - Initial odd release supporting Ruby ~> 1.9
127
139
 
128
- [Unreleased]: https://github.com/rubocop-lts/rubocop-lts/compare/v7.0.0...HEAD
140
+ [Unreleased]: https://github.com/rubocop-lts/rubocop-lts/compare/v8.0.2...HEAD
141
+ [8.0.2]: https://github.com/rubocop-lts/rubocop-lts/compare/v8.0.1...v8.0.2
142
+ [8.0.1]: https://github.com/rubocop-lts/rubocop-lts/compare/v8.0.0...v8.0.1
143
+ [8.0.0]: https://github.com/rubocop-lts/rubocop-lts/compare/v7.0.1...v8.0.0
144
+ [7.0.1]: https://github.com/rubocop-lts/rubocop-lts/compare/v7.0.0...v7.0.1
129
145
  [7.0.0]: https://github.com/rubocop-lts/rubocop-lts/compare/v6.0.1...v7.0.0
130
146
  [6.0.1]: https://github.com/rubocop-lts/rubocop-lts/compare/v6.0.0...v6.0.1
131
147
  [6.0.0]: https://github.com/rubocop-lts/rubocop-lts/compare/v5.0.2...v6.0.0
data/README.md CHANGED
@@ -47,7 +47,7 @@
47
47
  ## 🌳 This Branch
48
48
 
49
49
  <!-- FIND VERSION -->
50
- **This README is for the odd release of `rubocop-lts` supporting Ruby ~> 2.2.0.**
50
+ **This README is for the even release of `rubocop-lts` supporting Ruby >= 2.2.0.**
51
51
 
52
52
  ### 📼 Supporting Ruby 1.8
53
53
 
@@ -91,7 +91,7 @@ Add this line to your application's Gemfile:
91
91
 
92
92
  <!-- FIND VERSION -->
93
93
  ```ruby
94
- gem 'rubocop-lts', '~> 7.0', require: false
94
+ gem 'rubocop-lts', '~> 8.0', require: false
95
95
  ```
96
96
 
97
97
  And then execute:
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Rubocop
4
4
  module Lts
5
- VERSION = "7.0.1".freeze
5
+ VERSION = "8.0.2".freeze
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-lts
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.1
4
+ version: 8.0.2
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-06-08 00:00:00.000000000 Z
11
+ date: 2022-06-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop-ruby2_2
@@ -46,10 +46,10 @@ licenses:
46
46
  - MIT
47
47
  metadata:
48
48
  homepage_uri: https://github.com/rubocop-lts/rubocop-lts
49
- source_code_uri: https://github.com/rubocop-lts/rubocop-lts/tree/v7.0.1
50
- changelog_uri: https://github.com/rubocop-lts/rubocop-lts/blob/v7.0.1/CHANGELOG.md
49
+ source_code_uri: https://github.com/rubocop-lts/rubocop-lts/tree/v8.0.2
50
+ changelog_uri: https://github.com/rubocop-lts/rubocop-lts/blob/v8.0.2/CHANGELOG.md
51
51
  bug_tracker_uri: https://github.com/rubocop-lts/rubocop-lts/issues
52
- documentation_uri: https://www.rubydoc.info/gems/rubocop-lts/7.0.1
52
+ documentation_uri: https://www.rubydoc.info/gems/rubocop-lts/8.0.2
53
53
  wiki_uri: https://github.com/rubocop-lts/rubocop-lts/wiki
54
54
  rubygems_mfa_required: 'true'
55
55
  post_install_message:
@@ -63,7 +63,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
63
63
  version: 2.2.0
64
64
  - - "<"
65
65
  - !ruby/object:Gem::Version
66
- version: '2.3'
66
+ version: '4.0'
67
67
  required_rubygems_version: !ruby/object:Gem::Requirement
68
68
  requirements:
69
69
  - - ">="