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