diff --git a/toys-core/CHANGELOG.md b/toys-core/CHANGELOG.md index efb8c361..61c29d22 100644 --- a/toys-core/CHANGELOG.md +++ b/toys-core/CHANGELOG.md @@ -1,5 +1,9 @@ # Release History +### v0.15.1 / 2023-10-15 + +* FIXED: Clean up some requires + ### v0.15.0 / 2023-10-12 Toys-Core 0.15.0 is a major release that overhauls error and signal handling, cleans up some warts around entrypoint and method definition, and fixes a few long-standing issues. diff --git a/toys-core/lib/toys/core.rb b/toys-core/lib/toys/core.rb index ae8e2e40..d77e3140 100644 --- a/toys-core/lib/toys/core.rb +++ b/toys-core/lib/toys/core.rb @@ -9,7 +9,7 @@ module Core # Current version of Toys core. # @return [String] # - VERSION = "0.15.0" + VERSION = "0.15.1" end ## diff --git a/toys/CHANGELOG.md b/toys/CHANGELOG.md index 75b8bffe..c50f07d5 100644 --- a/toys/CHANGELOG.md +++ b/toys/CHANGELOG.md @@ -1,5 +1,9 @@ # Release History +### v0.15.1 / 2023-10-15 + +* FIXED: Clean up some requires + ### v0.15.0 / 2023-10-12 Toys 0.15.0 is a major release that adds arbitrary signal handling, cleans up some warts around entrypoint and method definition, and fixes a few long-standing issues. diff --git a/toys/lib/toys/version.rb b/toys/lib/toys/version.rb index 60bedbf8..00b24ac2 100644 --- a/toys/lib/toys/version.rb +++ b/toys/lib/toys/version.rb @@ -5,5 +5,5 @@ module Toys # Current version of the Toys command line executable. # @return [String] # - VERSION = "0.15.0" + VERSION = "0.15.1" end