summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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]