diff --git a/CHANGELOG.md b/CHANGELOG.md index dc2c5f9..9bd7d87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ## HEAD (unreleased) +## 1.1.0 + - Annotate NoMethodError in non-production environments (https://github.com/zombocom/dead_end/pull/46) - Do not count trailing if/unless as a keyword (https://github.com/zombocom/dead_end/pull/44) diff --git a/Gemfile.lock b/Gemfile.lock index 8cf9c54..aa9626d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - dead_end (1.0.2) + dead_end (1.1.0) GEM remote: https://rubygems.org/ diff --git a/lib/dead_end/version.rb b/lib/dead_end/version.rb index e4b7930..9cb64ae 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.2" + VERSION = "1.1.0" end