Skip to content

Commit eb3d358

Browse files
committed
Cut 0.82.0
1 parent 960e4ec commit eb3d358

File tree

6 files changed

+43
-4
lines changed

6 files changed

+43
-4
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ Include the output of `rubocop -V` or `bundle exec rubocop -V` if using Bundler.
3535

3636
```
3737
$ [bundle exec] rubocop -V
38-
0.81.0 (using Parser 2.5.1.2, running on ruby 2.5.1 x86_64-linux)
38+
0.82.0 (using Parser 2.5.1.2, running on ruby 2.5.1 x86_64-linux)
3939
```

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## master (unreleased)
44

5+
## 0.82.0 (2020-04-16)
6+
57
### New features
68

79
* [#7867](https://github.com/rubocop-hq/rubocop/pull/7867): Add support for tabs in indentation. ([@DracoAter][])

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ haven't reached version 1.0 yet). To prevent an unwanted RuboCop update you
5353
might want to use a conservative version lock in your `Gemfile`:
5454

5555
```rb
56-
gem 'rubocop', '~> 0.81.0', require: false
56+
gem 'rubocop', '~> 0.82.0', require: false
5757
```
5858

5959
## Quickstart

lib/rubocop/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module RuboCop
44
# This module holds the RuboCop version information.
55
module Version
6-
STRING = '0.81.0'
6+
STRING = '0.82.0'
77

88
MSG = '%<version>s (using Parser %<parser_version>s, running on ' \
99
'%<ruby_engine>s %<ruby_version>s %<ruby_platform>s)'

manual/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ haven't reached version 1.0 yet). To prevent an unwanted RuboCop update you
1818
might want to use a conservative version locking in your `Gemfile`:
1919

2020
```rb
21-
gem 'rubocop', '~> 0.81.0', require: false
21+
gem 'rubocop', '~> 0.82.0', require: false
2222
```
2323

2424
!!! Note

relnotes/v0.82.0.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
### New features
2+
3+
* [#7867](https://github.com/rubocop-hq/rubocop/pull/7867): Add support for tabs in indentation. ([@DracoAter][])
4+
* [#7863](https://github.com/rubocop-hq/rubocop/issues/7863): Corrector now accepts nodes in addition to ranges. ([@marcandre][])
5+
* [#7862](https://github.com/rubocop-hq/rubocop/issues/7862): Corrector now has a `wrap` method. ([@marcandre][])
6+
* [#7850](https://github.com/rubocop-hq/rubocop/issues/7850): Make it possible to enable/disable pending cops. ([@koic][])
7+
* [#7861](https://github.com/rubocop-hq/rubocop/issues/7861): Make it to allow `Style/CaseEquality` when the receiver is a constant. ([@rafaelfranca][])
8+
* [#7851](https://github.com/rubocop-hq/rubocop/pull/7851): Add a new `Style/ExponentialNotation` cop. ([@tdeo][])
9+
* [#7384](https://github.com/rubocop-hq/rubocop/pull/7384): Add new `Style/DisableCopsWithinSourceCodeDirective` cop. ([@egze][])
10+
* [#7826](https://github.com/rubocop-hq/rubocop/issues/7826): Add new `Layout/SpaceAroundMethodCallOperator` cop. ([@saurabhmaurya15][])
11+
12+
### Bug fixes
13+
14+
* [#7871](https://github.com/rubocop-hq/rubocop/pull/7871): Fix an auto-correction bug in `Lint/BooleanSymbol`. ([@knu][])
15+
* [#7842](https://github.com/rubocop-hq/rubocop/issues/7842): Fix a false positive for `Lint/RaiseException` when raising Exception with explicit namespace. ([@koic][])
16+
* [#7834](https://github.com/rubocop-hq/rubocop/issues/7834): Fix `Lint/UriRegexp` to register offense with array arguments. ([@tejasbubane][])
17+
* [#7841](https://github.com/rubocop-hq/rubocop/issues/7841): Fix an error for `Style/TrailingCommaInBlockArgs` when lambda literal (`->`) has multiple arguments. ([@koic][])
18+
* [#7842](https://github.com/rubocop-hq/rubocop/issues/7842): Fix a false positive for `Lint/RaiseException` when Exception without cbase specified under the namespace `Gem` by adding `AllowedImplicitNamespaces` option. ([@koic][])
19+
* `Style/IfUnlessModifier` does not infinite-loop when autocorrecting long lines which use if/unless modifiers and have multiple statements separated by semicolons. ([@alexdowad][])
20+
* [rubocop-hq/rubocop-rails#127](https://github.com/rubocop-hq/rubocop-rails/issues/127): Use `ConfigLoader.default_configuration` for the default config. ([@hanachin][])
21+
22+
### Changes
23+
24+
* **(Breaking)** Renamed `Layout/Tab` cop to `Layout/IndentationStyle`. ([@DracoAter][])
25+
* [#7869](https://github.com/rubocop-hq/rubocop/pull/7869): **(Breaking)** Drop support for Ruby 2.3. ([@koic][])
26+
27+
[@DracoAter]: https://github.com/DracoAter
28+
[@marcandre]: https://github.com/marcandre
29+
[@koic]: https://github.com/koic
30+
[@rafaelfranca]: https://github.com/rafaelfranca
31+
[@tdeo]: https://github.com/tdeo
32+
[@egze]: https://github.com/egze
33+
[@saurabhmaurya15]: https://github.com/saurabhmaurya15
34+
[@knu]: https://github.com/knu
35+
[@tejasbubane]: https://github.com/tejasbubane
36+
[@alexdowad]: https://github.com/alexdowad
37+
[@hanachin]: https://github.com/hanachin

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy