summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Davis <ryand@zenspider.com>2019-05-26 14:15:19 -0800
committerRyan Davis <ryand@zenspider.com>2019-05-26 14:15:19 -0800
commitdd02f882986b07bbe569aef49fd55e62a8a302c3 (patch)
tree44c91dfe91e375d0a3f101277d3f59df134871fe
parent56e9bf2867148278914795269ae8317ea8aeae5e (diff)
downloadhoe-dd02f882986b07bbe569aef49fd55e62a8a302c3.tar.gz
prepped for releasev3.18.0
[git-p4: depot-paths = "//src/hoe/dev/": change = 12064]
-rw-r--r--History.rdoc21
-rw-r--r--lib/hoe.rb2
2 files changed, 22 insertions, 1 deletions
diff --git a/History.rdoc b/History.rdoc
index 073115d..6eea629 100644
--- a/History.rdoc
+++ b/History.rdoc
@@ -1,3 +1,24 @@
+=== 3.18.0 / 2019-05-25
+
+* 1 major enhancement:
+
+ * Added Minitest::TestTask (will move to minitest proper soon)
+
+* 8 minor enhancements:
+
+ * Added 'multiruby_skip' config so it can be in global ~/.hoerc.
+ * Added Hoe.include_dirs to allow tasks to probe directly.
+ * Added X=exclude_pattern to the test plugin. Can be used in conjunction with N=select_pattern.
+ * Deprecated Hoe::Test.make_test_cmd (argue with me!)
+ * Deprecated Hoe::Test.try_loading_rspec (argue with me!)
+ * Deprecated Hoe::Test.try_loading_rspec2 (argue with me!)
+ * Deprecated testunit support (argue with me!)
+ * Switched normally hoe-generated test tasks over to use Minitest::TestTask.
+
+* 1 bug fix:
+
+ * Fixed incompatibility with rubygems 3.x. (drbrain)
+
=== 3.17.2 / 2019-03-13
* 1 bug fix:
diff --git a/lib/hoe.rb b/lib/hoe.rb
index bd5bdcb..4d4cb04 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.17.2"
+ VERSION = "3.18.0"
@@plugins = [:clean, :debug, :deps, :flay, :flog, :newb, :package,
:publish, :gemcutter, :signing, :test]