diff --git a/CHANGELOG.md b/CHANGELOG.md index 41d51f9e..1af07994 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,15 @@ # Changelog +## 1.0.4 + +* Workaround RuboCop's CLI from erroring when it detects a cop named + BlockDelimiters by renaming it to BlockSingleLineBraces + ([#271](https://github.com/testdouble/standard/issues/271)0 + ## 1.0.3 * Fix an exit code bug introduced in 1.0.2 - ([#271](https://github.com/testdouble/standard/pull/272) + ([#272](https://github.com/testdouble/standard/pull/272) ## 1.0.2 diff --git a/Gemfile.lock b/Gemfile.lock index f19f610f..08934d88 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - standard (1.0.3) + standard (1.0.4) rubocop (= 1.11.0) rubocop-performance (= 1.10.1) diff --git a/lib/standard/version.rb b/lib/standard/version.rb index 7159f4d9..6e1bc147 100644 --- a/lib/standard/version.rb +++ b/lib/standard/version.rb @@ -1,3 +1,3 @@ module Standard - VERSION = Gem::Version.new("1.0.3") + VERSION = Gem::Version.new("1.0.4") end