summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--History.rdoc6
-rw-r--r--Rakefile2
-rw-r--r--lib/hoe.rb2
3 files changed, 9 insertions, 1 deletions
diff --git a/History.rdoc b/History.rdoc
index 65a750a..6b98658 100644
--- a/History.rdoc
+++ b/History.rdoc
@@ -1,3 +1,9 @@
+=== 3.13.1 / 2015-02-03
+
+* 1 bug fix:
+
+ * Remove deprecated test_files from spec. (igas)
+
=== 3.13.0 / 2014-09-26
* 2 minor enhancements:
diff --git a/Rakefile b/Rakefile
index 1a6be05..8881f19 100644
--- a/Rakefile
+++ b/Rakefile
@@ -7,6 +7,8 @@ Hoe.plugin :seattlerb
Hoe.plugin :isolate
Hoe.plugin :rdoc
+Hoe.add_include_dirs "../../minitest/dev/lib"
+
Hoe.spec "hoe" do
developer "Ryan Davis", "ryand-ruby@zenspider.com"
diff --git a/lib/hoe.rb b/lib/hoe.rb
index aaef015..d93f35b 100644
--- a/lib/hoe.rb
+++ b/lib/hoe.rb
@@ -91,7 +91,7 @@ class Hoe
include Rake::DSL if defined?(Rake::DSL)
# duh
- VERSION = "3.13.0"
+ VERSION = "3.13.1"
@@plugins = [:clean, :debug, :deps, :flay, :flog, :newb, :package,
:publish, :gemcutter, :signing, :test]