diff --git a/lib/console/version.rb b/lib/console/version.rb index 7daf5a6..8bf13cd 100644 --- a/lib/console/version.rb +++ b/lib/console/version.rb @@ -4,5 +4,5 @@ # Copyright, 2019-2024, by Samuel Williams. module Console - VERSION = "1.28.1" + VERSION = "1.29.0" end diff --git a/readme.md b/readme.md index 59678c0..9492b0f 100644 --- a/readme.md +++ b/readme.md @@ -32,6 +32,12 @@ Please see the [project documentation](https://socketry.github.io/console/) for Please see the [project releases](https://socketry.github.io/console/releases/index) for all releases. +### v1.29.0 + + - Don't make `Kernel#warn` redirection to `Console.warn` the default behavior, you must `require 'console/warn'` to enable it. + - Remove deprecated `Console::Logger#failure`. + - [Consistent Handling of Exceptions](https://socketry.github.io/console/releases/index#consistent-handling-of-exceptions) + ### v1.28.0 - Add support for `Kernel#warn` redirection to `Console.warn`. diff --git a/releases.md b/releases.md index 718f225..f17d79a 100644 --- a/releases.md +++ b/releases.md @@ -1,6 +1,6 @@ # Releases -## Unreleased +## v1.29.0 - Don't make `Kernel#warn` redirection to `Console.warn` the default behavior, you must `require 'console/warn'` to enable it. - Remove deprecated `Console::Logger#failure`. @@ -9,7 +9,7 @@ `Console.call` and all wrapper methods will now consistently handle exceptions that are the last positional argument or keyword argument. This means that the following code will work as expected: -```ruby +``` ruby begin rescue => error # Last positional argument: