diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e905f7..a0730d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ## HEAD (unreleased) +## 1.0.2 + - Fix bug where empty lines were interpreted to have a zero indentation (https://github.com/zombocom/dead_end/pull/39) - Better results when missing "end" comes at the end of a capturing block (such as a class or module definition) (https://github.com/zombocom/dead_end/issues/32) diff --git a/Gemfile.lock b/Gemfile.lock index 8180958..8cf9c54 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - dead_end (1.0.1) + dead_end (1.0.2) GEM remote: https://rubygems.org/ diff --git a/lib/dead_end/version.rb b/lib/dead_end/version.rb index 50cd65f..e4b7930 100644 --- a/lib/dead_end/version.rb +++ b/lib/dead_end/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module DeadEnd - VERSION = "1.0.1" + VERSION = "1.0.2" end