summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Davis <ryand@zenspider.com>2011-01-31 16:11:40 -0800
committerRyan Davis <ryand@zenspider.com>2011-01-31 16:11:40 -0800
commit72077bf3803f66b252794ebdf921e3aee44dddbd (patch)
tree9cacd1f937c6ce51ec1d35c65d7d052502d8c3c3
parent742c8d2ea4be25ed3db407fc381ee0fd3bc5e3e9 (diff)
downloadhoe-72077bf3803f66b252794ebdf921e3aee44dddbd.tar.gz
prepping for releasev2.9.0
[git-p4: depot-paths = "//src/hoe/dev/": change = 6146]
-rw-r--r--History.txt23
-rw-r--r--lib/hoe.rb2
2 files changed, 24 insertions, 1 deletions
diff --git a/History.txt b/History.txt
index 103f8b1..4e910f3 100644
--- a/History.txt
+++ b/History.txt
@@ -1,3 +1,26 @@
+=== 2.9.0 / 2011-01-31
+
+* 11 minor enhancements:
+
+ * Added Hoe::Package#pkg_path to make package hook writing easier.
+ * Added Hoe::Test#test_prelude to allow for code to run before test loading.
+ * Added plugin?(name) to allow for easier plugin guarding in hoe spec.
+ * Added support for multiple template dirs for sow.
+ * Added support for rubygems-test. See http://www.gem-testers.org/
+ * Clean up sow a LOT using: include FileUtils::Verbose
+ * Don't warn about missing plugins without rake -t
+ * Hoe requires Gem::PackageTask from RubyGems 1.4+
+ * Moved post_news from publish to rubyforge
+ * Plugins can now be loaded from a +plugins+ array in ~/.hoerc
+ * rubyforge plugin now uses plain globs to push. Fixes releases for rubygems itself
+
+* 4 bug fixes:
+
+ * Failed plugins should notify on both trace and debug.
+ * Fixed rdoc_dir for custom rdoc locations
+ * Fixed require 'rubyforge' that was too late
+ * Fixed sow to properly rename dirs depth first
+
=== 2.8.0 / 2010-12-08
* 6 minor enhancements:
diff --git a/lib/hoe.rb b/lib/hoe.rb
index 3fe5876..e620392 100644
--- a/lib/hoe.rb
+++ b/lib/hoe.rb
@@ -58,7 +58,7 @@ require 'hoe/rake'
class Hoe
# duh
- VERSION = '2.8.0'
+ VERSION = '2.9.0'
@@plugins = [:clean, :debug, :deps, :flay, :flog, :newb, :package,
:publish, :rcov, :gemcutter, :signing, :test]