rubocop-lts 3.0.2 → 4.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: c9ac14b352fda4248d76af945ac2c3ca5397514252e4b6ea577330d1dc13d74a
4
- data.tar.gz: 8df16bd10307c79afd0c9a8b977c3482eacd05ba4127b6ddef4ed7895a00d632
3
+ metadata.gz: 43c41c58b1cac5af2eaac7a682ca86506fdacce9f24ef55b1755ee89d94d2d9a
4
+ data.tar.gz: b1a992b5f96328b0623a633c50590f090ac42398eefdf90d77d43f1aae50310a
5
5
  SHA512:
6
- metadata.gz: 779c6b1cd3bde1c8fa8e241a8f72508187cd3c61b773b253ff3e64fb4197da133dfc78838e6dc4a0bf478e36f3e30bd0ed434106fe10b02ac48cdf686ce2db95
7
- data.tar.gz: dbbdf7d02c73c39708dc9c6400ade80adcafc803cb273f69f003f8106656998296b1d12dcb2b1cde1a8468db48024dd5f3b73885d66235d4964ff7e23d875fe2
6
+ metadata.gz: e5d50c3a7230ff970901b94aaae9e2b8c0b6285a88217d8d2594b574720e237039f0acd99716a2066eea6d7741fdab827ca4ce1f10269fc4fee78351c50b3e10
7
+ data.tar.gz: bd53b895bcc84fbda63b84b24c74d8bd49337240bc91c422f2b9ba395e23d07fcfafaeb44a1346ca175c164d206b2b746036633953c83a6c43d966d076a9de25
data/CHANGELOG.md CHANGED
@@ -13,6 +13,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
13
13
 
14
14
  ### Removed
15
15
 
16
+ ## [4.0.2] - 2022-05-23
17
+ ### Fixed
18
+ - Make rubocop config files load ruby specific config from relevant rubocop-ruby*_* gem
19
+
20
+ ## [4.0.1] - 2022-05-23
21
+ ### Fixed
22
+ - Ship rubocop config files in gem
23
+ - rubocop-lts.yml
24
+
25
+ ## [4.0.0] - 2022-05-22
26
+ ### Added
27
+ - Initial even release supporting Ruby >= 2.0
28
+
16
29
  ## [3.0.2] - 2022-05-23
17
30
  ### Fixed
18
31
  - Make rubocop config files load ruby specific config from relevant rubocop-ruby*_* gem
@@ -62,7 +75,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
62
75
  ### Added
63
76
  - Initial odd release supporting Ruby ~> 1.9
64
77
 
65
- [Unreleased]: https://github.com/rubocop-lts/rubocop-lts/compare/v3.0.1...HEAD
78
+ [Unreleased]: https://github.com/rubocop-lts/rubocop-lts/compare/v4.0.2...HEAD
79
+ [4.0.2]: https://github.com/rubocop-lts/rubocop-lts/compare/v4.0.1...v4.0.2
80
+ [4.0.1]: https://github.com/rubocop-lts/rubocop-lts/compare/v4.0.0...v4.0.1
81
+ [4.0.0]: https://github.com/rubocop-lts/rubocop-lts/compare/v3.0.2...v4.0.0
82
+ [3.0.2]: https://github.com/rubocop-lts/rubocop-lts/compare/v3.0.1...v3.0.2
66
83
  [3.0.1]: https://github.com/rubocop-lts/rubocop-lts/compare/v3.0.0...v3.0.1
67
84
  [3.0.0]: https://github.com/rubocop-lts/rubocop-lts/compare/v2.0.3...v3.0.0
68
85
  [2.0.3]: https://github.com/rubocop-lts/rubocop-lts/compare/v2.0.2...v2.0.3
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 odd release of `rubocop-lts` supporting Ruby ~> 2.0.0.**
38
+ **This README is for the even release of `rubocop-lts` supporting Ruby >= 2.0.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', '~> 3.0', require: false
205
+ gem 'rubocop-lts', '~> 4.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", "~> 3.0"
332
+ spec.add_dependency "rubocop-lts", "~> 4.0"
333
333
  ```
334
334
 
335
335
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Rubocop
4
4
  module Lts
5
- VERSION = "3.0.2".freeze
5
+ VERSION = "4.0.2".freeze
6
6
  end
7
7
  end
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: 3.0.2
4
+ version: 4.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Boling
@@ -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/v3.0.2
53
- changelog_uri: https://github.com/rubocop-lts/rubocop-lts/blob/v3.0.2/CHANGELOG.md
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
54
54
  bug_tracker_uri: https://github.com/rubocop-lts/rubocop-lts/issues
55
- documentation_uri: https://www.rubydoc.info/gems/rubocop-lts/3.0.2
55
+ documentation_uri: https://www.rubydoc.info/gems/rubocop-lts/4.0.2
56
56
  wiki_uri: https://github.com/rubocop-lts/rubocop-lts/wiki
57
57
  rubygems_mfa_required: 'true'
58
58
  post_install_message:
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
66
66
  version: 2.0.0
67
67
  - - "<"
68
68
  - !ruby/object:Gem::Version
69
- version: '2.1'
69
+ version: '3.2'
70
70
  required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - ">="