summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--History.rdoc10
-rw-r--r--lib/hoe.rb2
2 files changed, 11 insertions, 1 deletions
diff --git a/History.rdoc b/History.rdoc
index 862d5f3..ae4c171 100644
--- a/History.rdoc
+++ b/History.rdoc
@@ -1,3 +1,13 @@
+=== 4.0.2 / 2023-01-21
+
+* 1 minor enhancement:
+
+ * Bump minimum ruby version to 2.6+. Can't wait to drop 2.6.
+
+* 1 bug fix:
+
+ * Fix for rubygems method error. Version used to respect #=~, now needs to #to_s first.
+
=== 4.0.1 / 2022-12-17
* 1 bug fix:
diff --git a/lib/hoe.rb b/lib/hoe.rb
index 407bddf..267136d 100644
--- a/lib/hoe.rb
+++ b/lib/hoe.rb
@@ -87,7 +87,7 @@ class Hoe
include Rake::DSL if defined?(Rake::DSL)
# duh
- VERSION = "4.0.1"
+ VERSION = "4.0.2"
@@plugins = [:clean, :debug, :deps, :flay, :flog, :newb, :package,
:publish, :gemcutter, :signing, :test]