From c060d70ba3e1abcb1be5c185432e88e779b3e003 Mon Sep 17 00:00:00 2001 From: schneems Date: Mon, 28 Dec 2020 11:30:43 -0600 Subject: [PATCH] v1.0.2 --- CHANGELOG.md | 2 ++ Gemfile.lock | 2 +- lib/dead_end/version.rb | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) 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