diff --git a/toys-core/CHANGELOG.md b/toys-core/CHANGELOG.md index 9904489f..34e22cb4 100644 --- a/toys-core/CHANGELOG.md +++ b/toys-core/CHANGELOG.md @@ -1,5 +1,9 @@ # Release History +### v0.14.6 / 2023-06-29 + +* FIXED: Fixed a GitCache exception when loading a repository containing a broken symlink + ### v0.14.5 / 2023-03-20 * FIXED: Rescue broken pipe errors by default when running a pager diff --git a/toys-core/lib/toys/core.rb b/toys-core/lib/toys/core.rb index e732dd3a..09a021ec 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.14.5" + VERSION = "0.14.6" end ## diff --git a/toys/CHANGELOG.md b/toys/CHANGELOG.md index ee2fa9a5..648c6f78 100644 --- a/toys/CHANGELOG.md +++ b/toys/CHANGELOG.md @@ -1,5 +1,9 @@ # Release History +### v0.14.6 / 2023-06-29 + +* FIXED: Fixed a GitCache exception when loading a repository containing a broken symlink + ### v0.14.5 / 2023-03-20 * FIXED: Rescue broken pipe errors by default when running a pager diff --git a/toys/lib/toys/version.rb b/toys/lib/toys/version.rb index aa53720c..25a2a979 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.14.5" + VERSION = "0.14.6" end