summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Davis <ryand-ruby@zenspider.com>2022-10-20 10:23:31 -0800
committerRyan Davis <ryand-ruby@zenspider.com>2022-10-20 10:23:31 -0800
commita5a1153a8482bf60aaa05cf5fd7f8828755c15ea (patch)
tree9f58f053528822c7c765c8b378b54e3adfeb35e1
parent97214fc54328d4db84f6bbae4b6b8c30dc63d05a (diff)
downloadhoe-a5a1153a8482bf60aaa05cf5fd7f8828755c15ea.tar.gz
prepped for releasev3.26.0
[git-p4: depot-paths = "//src/hoe/dev/": change = 13576]
-rw-r--r--History.rdoc11
-rw-r--r--lib/hoe.rb2
2 files changed, 12 insertions, 1 deletions
diff --git a/History.rdoc b/History.rdoc
index dcc9c21..de3132d 100644
--- a/History.rdoc
+++ b/History.rdoc
@@ -1,3 +1,14 @@
+=== 3.26.0 / 2022-10-20
+
+* 2 minor enhancements:
+
+ * Added warning to bundled minitest/test_task.
+ * Removed dead rcov plugin and added (simple)cov plugin.
+
+* 1 bug fix:
+
+ * Fixed test task load path issue, prepend Hoe.include_dirs to ensure they come first.
+
=== 3.25.0 / 2022-08-18
* 1 minor enhancement:
diff --git a/lib/hoe.rb b/lib/hoe.rb
index 33bb651..b022352 100644
--- a/lib/hoe.rb
+++ b/lib/hoe.rb
@@ -87,7 +87,7 @@ class Hoe
include Rake::DSL if defined?(Rake::DSL)
# duh
- VERSION = "3.25.0"
+ VERSION = "3.26.0"
@@plugins = [:clean, :debug, :deps, :flay, :flog, :newb, :package,
:publish, :gemcutter, :signing, :test]