summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Davis <ryand-ruby@zenspider.com>2023-01-21 16:30:15 -0800
committerRyan Davis <ryand-ruby@zenspider.com>2023-01-21 16:30:15 -0800
commitd748e0d6a3f6235a8b23a39632ccaf8b35023ba5 (patch)
tree2e32113294ab3a768d9a99c6a8994f2a669613a5
parent06475247594a46735d919764c931c9659a8ebf2c (diff)
downloadhoe-d748e0d6a3f6235a8b23a39632ccaf8b35023ba5.tar.gz
prepped for releasev4.0.2
[git-p4: depot-paths = "//src/hoe/dev/": change = 13672]
-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]