Skip to content

Commit

Permalink
Cut 0.48.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bbatsov committed Mar 26, 2017
1 parent b13145f commit d1b9d66
Show file tree
Hide file tree
Showing 5 changed files with 332 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## master (unreleased)

## 0.48.0 (2017-03-26)

### New features

* [#4107](https://github.com/bbatsov/rubocop/pull/4107): New `TargetRailsVersion` configuration parameter can be used to specify which version of Rails the inspected code is intended to run on. ([@maxbeizer][])
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ haven't reached version 1.0 yet). To prevent an unwanted RuboCop update you
might want to use a conservative version locking in your `Gemfile`:

```rb
gem 'rubocop', '~> 0.47.1', require: false
gem 'rubocop', '~> 0.48.0', require: false
```

## Quickstart
Expand Down
2 changes: 1 addition & 1 deletion lib/rubocop/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module RuboCop
# This module holds the RuboCop version information.
module Version
STRING = '0.47.1'.freeze
STRING = '0.48.0'.freeze

MSG = '%s (using Parser %s, running on %s %s %s)'.freeze

Expand Down
2 changes: 1 addition & 1 deletion manual/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ haven't reached version 1.0 yet). To prevent an unwanted RuboCop update you
might want to use a conservative version locking in your `Gemfile`:

```rb
gem 'rubocop', '~> 0.47.1', require: false
gem 'rubocop', '~> 0.48.0', require: false
```
Loading

0 comments on commit d1b9d66

Please sign in to comment.