From b60e9eba629f2b0be4da9f2ab6208798f3945692 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Mendon=C3=A7a=20Fran=C3=A7a?= Date: Wed, 20 Jan 2021 16:52:10 +0000 Subject: [PATCH] Prepare for 1.1.0 --- CHANGELOG.md | 8 ++++++++ lib/thor/version.rb | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a63909c7f..b67956f6a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# 1.1.0 +* Don't use ANSI colors when terminal is dumb. +* Ensure default option/argument is not erroneously aliased. +* Fixes a bug in the calculation of the print_wrapped method. +* Obey `:mute` and `options[:quiet]` in `Shell#say`. +* Support Ruby 3.0. +* Add force option to the `gsub_file` action. + # 1.0.1 * Fix thor when `thor/base` and `thor/group` are required without `thor.rb`. * Handle relative source path in `create_link`. diff --git a/lib/thor/version.rb b/lib/thor/version.rb index 067713bba..954dd4201 100644 --- a/lib/thor/version.rb +++ b/lib/thor/version.rb @@ -1,3 +1,3 @@ class Thor - VERSION = "1.0.1" + VERSION = "1.1.0" end