summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Davis <ryand@zenspider.com>2009-06-23 16:41:25 -0800
committerRyan Davis <ryand@zenspider.com>2009-06-23 16:41:25 -0800
commit8ed676a4d7b0b144fec285a5671a82f8137059b6 (patch)
treeb4cd0f842c2da06402bf624d7cddaabfe2ecbeba
parent4b8b78ecdf83ff33f7b7a3c008a82b17dfce4e10 (diff)
downloadhoe-8ed676a4d7b0b144fec285a5671a82f8137059b6.tar.gz
prepped for releasev2.3.0
[git-p4: depot-paths = "//src/hoe/dev/": change = 5167]
-rw-r--r--History.txt22
-rw-r--r--lib/hoe.rb2
2 files changed, 23 insertions, 1 deletions
diff --git a/History.txt b/History.txt
index f511108..af6ab06 100644
--- a/History.txt
+++ b/History.txt
@@ -1,3 +1,25 @@
+=== 2.3.0 / 2009-06-23
+
+* 1 major enhancement:
+
+ * Plugins can no longer be self-activating.
+
+* 8 minor enhancements:
+
+ * All hoe plugins are pre-activated.
+ * Allow RDoc title to be set via spec_extras['rdoc_options'].
+ * Cleaned up plugin activation.
+ * History intuition extended for markdown. drnic/jbarnette
+ * Move RDoc task requires to hoe/publish.rb.
+ * Only activated plugins are loaded, extended, and activated.
+ * Plugin loading deferred until hoe-spec creation, allowing proper meta-plugins.
+ * inline plugin adds RubyInline dependency and hooks clean task.
+
+* 2 bug fixes:
+
+ * Fixed developer load order error in load_plugins.
+ * rcov should use test_globs. apatterson
+
=== 2.2.0 / 2009-06-17
* 8 minor enhancements:
diff --git a/lib/hoe.rb b/lib/hoe.rb
index 224a73e..9956765 100644
--- a/lib/hoe.rb
+++ b/lib/hoe.rb
@@ -60,7 +60,7 @@ require 'hoe/rake'
class Hoe
# duh
- VERSION = '2.2.0'
+ VERSION = '2.3.0'
@@plugins = [:clean, :debug, :deps, :flay, :flog, :package, :publish,
:rcov, :signing, :test]