diff --git a/CHANGELOG.md b/CHANGELOG.md index ba84cde..deae614 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ## HEAD (unreleased) +## 2.0.0 + - Support "endless" oneline method definitions for Ruby 3+ (https://github.com/zombocom/dead_end/pull/80) - Reduce timeout to 1 second (https://github.com/zombocom/dead_end/pull/79) - Logically consecutive lines (such as chained methods are now joined) (https://github.com/zombocom/dead_end/pull/78) diff --git a/Gemfile.lock b/Gemfile.lock index 32bdc1f..3b1da9b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - dead_end (1.2.0) + dead_end (2.0.0) GEM remote: https://rubygems.org/ diff --git a/lib/dead_end/version.rb b/lib/dead_end/version.rb index 1f051c6..364a72f 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.2.0" + VERSION = "2.0.0" end