rubocop-lts 4.0.1 → 5.0.0

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: 8359b80175185f1d9808d473e878274353dc44f8f08976c55d9e36ad0c54aee1
4
- data.tar.gz: 1614d2517a3c5cb7103e5add7ae9bbe54b5627cef9d9e1dbeeed03d8183e6b79
3
+ metadata.gz: 3302d9373b6cadd26b28b4468047308f3b1fb8979bbaaee8249350ef11f9beed
4
+ data.tar.gz: e39e946d8b0bf340afec4fb6a635f695334865b3ea54b6717dc9791ad85c9de2
5
5
  SHA512:
6
- metadata.gz: c553efd9bca3b98ff7d92ce449c6c7d7c95d22bfc23b7b572e042865f7826ab6c3a91cf34d44454cfe1e81c6ac32e9573b2e4e6c67afca30e16bd3e5c1530362
7
- data.tar.gz: 3f4968dc4b4f88dd3418b816383bb89703f51e65fe3d079b0e0de1a7dacaccbef11472fa857906d322209e45b70137d66f2834eda28042e0a30708a524c94477
6
+ metadata.gz: 8360b0b7004a9a7694ae42a8ddb3de6008377142420a9fb91cceae773efc5631bcdb6b2b7b8bc129e20e5b469c0298400e50b85b2eff352d899e35f0be78639b
7
+ data.tar.gz: b9559ecba7a29e0a6f97e0b05ea6cf757cc59b197c8c6aca201e2db750ff3d6028c06b3cd66f643d599b088abb5f905d86b3d01896c6b61834b79c71f8d9352d
data/CHANGELOG.md CHANGED
@@ -13,6 +13,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
13
13
 
14
14
  ### Removed
15
15
 
16
+ ## [5.0.0] - 2022-05-23
17
+ ### Added
18
+ - Initial odd release supporting Ruby >= 2.1
19
+
16
20
  ## [4.0.1] - 2022-05-23
17
21
  ### Fixed
18
22
  - Ship rubocop config files in gem
@@ -59,7 +63,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
59
63
  ### Added
60
64
  - Initial odd release supporting Ruby ~> 1.9
61
65
 
62
- [Unreleased]: https://github.com/rubocop-lts/rubocop-lts/compare/v4.0.1...HEAD
66
+ [Unreleased]: https://github.com/rubocop-lts/rubocop-lts/compare/v5.0.0...HEAD
67
+ [5.0.0]: https://github.com/rubocop-lts/rubocop-lts/compare/v4.0.1...v5.0.0
63
68
  [4.0.1]: https://github.com/rubocop-lts/rubocop-lts/compare/v4.0.0...v4.0.1
64
69
  [4.0.0]: https://github.com/rubocop-lts/rubocop-lts/compare/v3.0.1...v4.0.0
65
70
  [3.0.1]: https://github.com/rubocop-lts/rubocop-lts/compare/v3.0.0...v3.0.1
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 odd 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', '~> 5.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", "~> 5.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.1".freeze
5
+ VERSION = "5.0.0".freeze
6
6
  end
7
7
  end
data/spec/spec_helper.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # This gem
4
- require "rubocop/ruby2_0"
4
+ require "rubocop/ruby2_1"
5
5
 
6
6
  # RSpec Configs
7
7
  require "config/rspec/rspec_core"
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.1
4
+ version: 5.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.1
53
- changelog_uri: https://github.com/rubocop-lts/rubocop-lts/blob/v4.0.1/CHANGELOG.md
52
+ source_code_uri: https://github.com/rubocop-lts/rubocop-lts/tree/v5.0.0
53
+ changelog_uri: https://github.com/rubocop-lts/rubocop-lts/blob/v5.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.1
55
+ documentation_uri: https://www.rubydoc.info/gems/rubocop-lts/5.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,10 +63,10 @@ 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
- version: '3.2'
69
+ version: '2.2'
70
70
  required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - ">="