diff --git a/toys-core/CHANGELOG.md b/toys-core/CHANGELOG.md index 334f7fad..5d80b0ce 100644 --- a/toys-core/CHANGELOG.md +++ b/toys-core/CHANGELOG.md @@ -1,5 +1,9 @@ # Release History +### v0.18.0 / 2025-12-05 + +* ADDED: The load_gem directive can now take version requirements as positional arguments + ### v0.17.2 / 2025-11-30 * FIXED: Minor formatting fix in the gem install prompt diff --git a/toys-core/lib/toys/core.rb b/toys-core/lib/toys/core.rb index 903051da..10a60abc 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.17.2" + VERSION = "0.18.0" end ## diff --git a/toys-release/CHANGELOG.md b/toys-release/CHANGELOG.md index cb3724aa..950489da 100644 --- a/toys-release/CHANGELOG.md +++ b/toys-release/CHANGELOG.md @@ -1,5 +1,16 @@ # Release History +### v0.3.0 / 2025-12-05 + +* BREAKING CHANGE: Remove component types to simplify configuration mechanism +* ADDED: Provided a gen-config tool +* ADDED: Support different options for handling collisions during file copies +* ADDED: Support for per-component overrides of commit tag behavior +* ADDED: Remove component types to simplify configuration mechanism +* ADDED: Check for unknown or misspelled keys when loading configuration +* ADDED: The gen-config tool now generates git_user_name and git_user_email fields +* DOCS: Initial work on the users guide + ### v0.2.2 / 2025-11-30 * FIXED: Fixed several crashes in the retry tool diff --git a/toys-release/lib/toys/release/version.rb b/toys-release/lib/toys/release/version.rb index 04385187..626ae8c2 100644 --- a/toys-release/lib/toys/release/version.rb +++ b/toys-release/lib/toys/release/version.rb @@ -6,6 +6,6 @@ module Release # Current version of the Toys release system. # @return [String] # - VERSION = "0.2.2" + VERSION = "0.3.0" end end diff --git a/toys/CHANGELOG.md b/toys/CHANGELOG.md index ab8f41ec..a9dfbc97 100644 --- a/toys/CHANGELOG.md +++ b/toys/CHANGELOG.md @@ -1,5 +1,9 @@ # Release History +### v0.18.0 / 2025-12-05 + +* No significant updates. + ### v0.17.2 / 2025-11-30 * DOCS: Fixed minor typos in readme files diff --git a/toys/lib/toys/version.rb b/toys/lib/toys/version.rb index a17e2da4..e81cfdea 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.17.2" + VERSION = "0.18.0" end