Skip to content

Commit e27942a

Browse files
committed
Cut 0.89.1
1 parent 3cba823 commit e27942a

File tree

6 files changed

+27
-4
lines changed

6 files changed

+27
-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.89.0 (using Parser 2.5.1.2, running on ruby 2.5.1 x86_64-linux)
38+
0.89.1 (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.89.1 (2020-08-10)
6+
57
### Bug fixes
68

79
* [#8463](https://github.com/rubocop-hq/rubocop/pull/8463): Fix false positives for `Lint/OutOfRangeRegexpRef` when a regexp is defined and matched in separate steps. ([@eugeneius][])

README.md

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

5151
```rb
52-
gem 'rubocop', '~> 0.89.0', require: false
52+
gem 'rubocop', '~> 0.89.1', require: false
5353
```
5454

5555
## Quickstart

docs/modules/ROOT/pages/installation.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ might want to use a conservative version locking in your `Gemfile`:
2121

2222
[source,rb]
2323
----
24-
gem 'rubocop', '~> 0.89.0', require: false
24+
gem 'rubocop', '~> 0.89.1', require: false
2525
----
2626

2727
NOTE: You can check out our progress on the road to version 1.0 https://github.com/rubocop-hq/rubocop/milestone/4[here].

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.89.0'
6+
STRING = '0.89.1'
77

88
MSG = '%<version>s (using Parser %<parser_version>s, '\
99
'rubocop-ast %<rubocop_ast_version>s, ' \

relnotes/v0.89.1.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
### Bug fixes
2+
3+
* [#8463](https://github.com/rubocop-hq/rubocop/pull/8463): Fix false positives for `Lint/OutOfRangeRegexpRef` when a regexp is defined and matched in separate steps. ([@eugeneius][])
4+
* [#8464](https://github.com/rubocop-hq/rubocop/pull/8464): Handle regexps matched with `when`, `grep`, `gsub`, `gsub!`, `sub`, `sub!`, `[]`, `slice`, `slice!`, `scan`, `index`, `rindex`, `partition`, `rpartition`, `start_with?`, and `end_with?` in `Lint/OutOfRangeRegexpRef`. ([@eugeneius][])
5+
* [#8466](https://github.com/rubocop-hq/rubocop/issues/8466): Fix a false positive for `Lint/UriRegexp` when using `regexp` method without receiver. ([@koic][])
6+
* [#8478](https://github.com/rubocop-hq/rubocop/issues/8478): Relax `Lint/BinaryOperatorWithIdenticalOperands` for mathematical operations. ([@marcandre][])
7+
* [#8480](https://github.com/rubocop-hq/rubocop/issues/8480): Tweak callback list of `Lint/MissingSuper`. ([@marcandre][])
8+
* [#8481](https://github.com/rubocop-hq/rubocop/pull/8481): Fix autocorrect for elements with newlines in `Style/SymbolArray` and `Style/WordArray`. ([@biinari][])
9+
* [#8475](https://github.com/rubocop-hq/rubocop/issues/8475): Fix a false positive for `Style/HashAsLastArrayItem` when there are duplicate hashes in the array. ([@wcmonty][])
10+
* [#8497](https://github.com/rubocop-hq/rubocop/issues/8497): Fix `Style/IfUnlessModifier` to add parentheses when converting if-end condition inside a parenthesized method argument list. ([@dsavochkin][])
11+
12+
### Changes
13+
14+
* [#8487](https://github.com/rubocop-hq/rubocop/pull/8487): Detect `<` and `>` as comparison operators in `Style/ConditionalAssignment` cop. ([@biinari][])
15+
16+
[@eugeneius]: https://github.com/eugeneius
17+
[@koic]: https://github.com/koic
18+
[@marcandre]: https://github.com/marcandre
19+
[@biinari]: https://github.com/biinari
20+
[@wcmonty]: https://github.com/wcmonty
21+
[@dsavochkin]: https://github.com/dsavochkin

0 commit comments

Comments
 (0)