Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: Release 2 gems #260

Merged
merged 2 commits into from
May 15, 2024
Merged
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.15.6 / 2024-05-15

* FIXED: Fixed argument parsing to allow a flag value with a newline delimited by =

### v0.15.5 / 2024-01-31

* FIXED: Fix for uri version mismatch error in certain bundler integration cases
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.15.5"
VERSION = "0.15.6"
end

##
Expand Down
6 changes: 6 additions & 0 deletions toys/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release History

### v0.15.6 / 2024-05-15

* FIXED: Fixed argument parsing to allow a flag values delimited by "=" to contain newlines
* FIXED: Fixed minitest version failures in the system test builtin tool
* FIXED: Fixed crash in the system test builtin tool's minitest-rg integration with minitest-rg 5.3

### v0.15.5 / 2024-01-31

* FIXED: Fix for uri version mismatch error in certain bundler integration cases
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.15.5"
VERSION = "0.15.6"
end