Skip to content

Commit 4647c98

Browse files
committed
Bump to 0.14.0.
1 parent db85b66 commit 4647c98

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

CHANGELOG.rdoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
* Added :lazy_default which is only triggered if a switch is given
44
* Added Thor::Shell::HTML
5+
* Added subcommands
56
* Decoupled Thor::Group and Thor, so it's easier to vendor
67
* Added check_unknown_options! in case you want error messages to be raised in valid switches
78
* run(command) should return the results of command

Thorfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ rescue LoadError
1010
end
1111

1212
GEM_NAME = 'thor'
13-
EXTRA_RDOC_FILES = ["README.rdoc", "LICENSE", "CHANGELOG.rdoc", "VERSION", "Thorfile"]
13+
EXTRA_RDOC_FILES = ["README.md", "LICENSE", "CHANGELOG.rdoc", "VERSION", "Thorfile"]
1414

1515
class Default < Thor
1616
include Thor::RakeCompat
@@ -44,7 +44,7 @@ class Default < Thor
4444
require 'jeweler'
4545
Jeweler::Tasks.new do |s|
4646
s.name = GEM_NAME
47-
s.version = Thor::VERSION
47+
s.version = Thor::VERSION.dup
4848
s.rubyforge_project = "textmate"
4949
s.platform = Gem::Platform::RUBY
5050
s.summary = "A scripting framework that replaces rake, sake and rubigen"

lib/thor/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
class Thor
2-
VERSION = "0.13.8".freeze
2+
VERSION = "0.14.0".freeze
33
end

thor.gemspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,24 @@
55

66
Gem::Specification.new do |s|
77
s.name = %q{thor}
8-
s.version = "0.13.8"
8+
s.version = "0.14.0"
99

1010
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
1111
s.authors = ["Yehuda Katz", "Jos\303\251 Valim"]
12-
s.date = %q{2010-07-16}
12+
s.date = %q{2010-07-26}
1313
s.description = %q{A scripting framework that replaces rake, sake and rubigen}
1414
s.email = %q{[email protected]}
1515
s.executables = ["thor", "rake2thor"]
1616
s.extra_rdoc_files = [
1717
"CHANGELOG.rdoc",
1818
"LICENSE",
19-
"README.rdoc",
19+
"README.md",
2020
"Thorfile"
2121
]
2222
s.files = [
2323
"CHANGELOG.rdoc",
2424
"LICENSE",
25-
"README.rdoc",
25+
"README.md",
2626
"Thorfile",
2727
"bin/rake2thor",
2828
"bin/thor",

0 commit comments

Comments
 (0)