Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions toys-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion toys-core/lib/toys/core.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module Core
# Current version of Toys core.
# @return [String]
#
VERSION = "0.17.2"
VERSION = "0.18.0"
end

##
Expand Down
11 changes: 11 additions & 0 deletions toys-release/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion toys-release/lib/toys/release/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 4 additions & 0 deletions toys/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion toys/lib/toys/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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