Skip to content

Commit

Permalink
Ready for 0.9.7 release
Browse files Browse the repository at this point in the history
  • Loading branch information
fabien committed Oct 13, 2008
1 parent f0a7458 commit 312eea2
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@
* Improve help output to list shorthand switches, too
* Investigate and fix deep namespacing ("foo:bar:baz") issues

== 0.9.7, released 2008-10-13

* Setting global method options on the initialize method works as expected:
All other tasks will accept these global options in addition to their own.
* Added 'group' notion to Thor task sets (class Thor); by default all tasks
are in the 'standard' group. Running 'thor -T' will only show the standard
tasks - adding --all will show all tasks. You can also filter on a specific
group using the --group option: thor -T --group advanced

== 0.9.6, released 2008-09-13

* Generic improvements

== 0.9.5, released 2008-08-27

* Improve Windows compatibility
Expand Down
2 changes: 1 addition & 1 deletion Thorfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ require 'rubygems/specification'
require 'thor/tasks'

GEM = "thor"
GEM_VERSION = "0.9.6"
GEM_VERSION = "0.9.7"
AUTHOR = "Yehuda Katz"
EMAIL = "wycats@gmail.com"
HOMEPAGE = "http://yehudakatz.com"
Expand Down
2 changes: 1 addition & 1 deletion thor.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = %q{thor}
s.version = "0.9.6"
s.version = "0.9.7"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Yehuda Katz"]
Expand Down

0 comments on commit 312eea2

Please sign in to comment.