Skip to content

Commit a1796a1

Browse files
committed
Cut 0.65.0
1 parent 8fe4946 commit a1796a1

File tree

6 files changed

+30
-4
lines changed

6 files changed

+30
-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.64.0 (using Parser 2.5.1.2, running on ruby 2.5.1 x86_64-linux)
38+
0.65.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.65.0 (2019-02-19)
6+
57
### New features
68

79
* [#6126](https://github.com/rubocop-hq/rubocop/pull/6126): Add an experimental strict mode to `Style/MutableConstant` that will freeze all constants, rather than just literals. ([@rrosenblum][])

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 locking in your `Gemfile`:
5454

5555
```rb
56-
gem 'rubocop', '~> 0.64.0', require: false
56+
gem 'rubocop', '~> 0.65.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.64.0'.freeze
6+
STRING = '0.65.0'.freeze
77

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

manual/installation.md

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

1818
```rb
19-
gem 'rubocop', '~> 0.64.0', require: false
19+
gem 'rubocop', '~> 0.65.0', require: false
2020
```
2121

2222
!!! Note

relnotes/v0.65.0.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
### New features
2+
3+
* [#6126](https://github.com/rubocop-hq/rubocop/pull/6126): Add an experimental strict mode to `Style/MutableConstant` that will freeze all constants, rather than just literals. ([@rrosenblum][])
4+
5+
### Bug fixes
6+
7+
* [#6765](https://github.com/rubocop-hq/rubocop/pull/6765): Fix false positives in keyword arguments for `Style/MethodCallWithArgsParentheses` `omit_parentheses`. ([@gsamokovarov][])
8+
* [#6763](https://github.com/rubocop-hq/rubocop/pull/6763): Fix false positives in range literals for `Style/MethodCallWithArgsParentheses` `omit_parentheses`. ([@gsamokovarov][])
9+
* [#6748](https://github.com/rubocop-hq/rubocop/issues/6748): Fix `Style/RaiseArgs` auto-correction breaking in contexts that require parentheses. ([@drenmi][])
10+
* [#6751](https://github.com/rubocop-hq/rubocop/issues/6751): Prevent `Style/OneLineConditional` from breaking on `retry` and `break` keywords. ([@drenmi][])
11+
* [#6755](https://github.com/rubocop-hq/rubocop/issues/6755): Prevent `Style/TrailingCommaInArgument` from breaking when a safe method call is chained on the offending method. ([@drenmi][], [@hoshinotsuyoshi][])
12+
13+
### Changes
14+
15+
* [#6766](https://github.com/rubocop-hq/rubocop/pull/6766): Drop support for Ruby 2.2.0 and 2.2.1. ([@pocke][])
16+
* [#6733](https://github.com/rubocop-hq/rubocop/pull/6733): Warn duplicated keys in `.rubocop.yml`. ([@pocke][])
17+
* [#6613](https://github.com/rubocop-hq/rubocop/pull/6613): Mark `Style/ModuleFunction` as `SafeAutocorrect: false` and disable autocorrect by default. ([@dduugg][])
18+
19+
[@rrosenblum]: https://github.com/rrosenblum
20+
[@gsamokovarov]: https://github.com/gsamokovarov
21+
[@drenmi]: https://github.com/drenmi
22+
[@hoshinotsuyoshi]: https://github.com/hoshinotsuyoshi
23+
[@pocke]: https://github.com/pocke
24+
[@dduugg]: https://github.com/dduugg

0 commit comments

Comments
 (0)