From fa949d2d873fb000dcc1c22da04018ef4baf0436 Mon Sep 17 00:00:00 2001 From: schneems Date: Mon, 11 Oct 2021 15:52:54 -0500 Subject: [PATCH] v2.0.0 --- 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 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