diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e6d900a9..a63909c7f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 1.0.1 +* Fix thor when `thor/base` and `thor/group` are required without `thor.rb`. +* Handle relative source path in `create_link`. + # 1.0.0 * Drop support to Ruby 1.8 and 1.9. * Deprecate relying on default `exit_on_failure?`. diff --git a/lib/thor/version.rb b/lib/thor/version.rb index 506c9b1b1..067713bba 100644 --- a/lib/thor/version.rb +++ b/lib/thor/version.rb @@ -1,3 +1,3 @@ class Thor - VERSION = "1.0.0" + VERSION = "1.0.1" end