From 7d08952483a7d39955ee75a92fdaab5fef5a00dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Mendon=C3=A7a=20Fran=C3=A7a?= Date: Fri, 9 Nov 2018 21:31:30 -0500 Subject: [PATCH] Prepare to 0.20.2 release --- CHANGELOG.md | 4 ++++ lib/thor/version.rb | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 84046aca2..93d4f1229 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ +# 0.20.2 +* Fix `did_you_mean` support. + # 0.20.1 * Support new versions fo ERB. * Fix `check_unknown_options!` to not check the content that was not parsed, i.e. after a `--` or after the first unknown with `stop_on_unknown_option!` +* Add `did_you_mean` support. ## 0.20.0 * Add `check_default_type!` to check if the default value of an option matches the defined type. diff --git a/lib/thor/version.rb b/lib/thor/version.rb index 99e7b60bf..f6e7cf963 100644 --- a/lib/thor/version.rb +++ b/lib/thor/version.rb @@ -1,3 +1,3 @@ class Thor - VERSION = "0.20.1" + VERSION = "0.20.2" end