diff --git a/CHANGELOG.md b/CHANGELOG.md index 668ea9de..18078dec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 1.0.2 + +* Preserve RuboCop's CLI exit codes + ([#270](https://github.com/testdouble/standard/pull/270)) by + [@nicksieger](https://github.com/nicksieger) + ## 1.0.1 * Update rubocop from 1.10.0 to [1.11.0](https://github.com/rubocop-hq/rubocop/releases/tag/v1.11.0) diff --git a/Gemfile.lock b/Gemfile.lock index bf809207..29ab263c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - standard (1.0.1) + standard (1.0.2) rubocop (= 1.11.0) rubocop-performance (= 1.10.1) @@ -61,4 +61,4 @@ DEPENDENCIES standard! BUNDLED WITH - 2.2.6 + 2.3.0.dev diff --git a/lib/standard/version.rb b/lib/standard/version.rb index 023f5ae6..b7024073 100644 --- a/lib/standard/version.rb +++ b/lib/standard/version.rb @@ -1,3 +1,3 @@ module Standard - VERSION = Gem::Version.new("1.0.1") + VERSION = Gem::Version.new("1.0.2") end