Skip to content

Commit

Permalink
Bump minor version.
Browse files Browse the repository at this point in the history
  • Loading branch information
ioquatix committed Nov 6, 2024
1 parent 7aba335 commit ebd30ec
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/console/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
# Copyright, 2019-2024, by Samuel Williams.

module Console
VERSION = "1.28.1"
VERSION = "1.29.0"
end
6 changes: 6 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down
4 changes: 2 additions & 2 deletions releases.md
Original file line number Diff line number Diff line change
@@ -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`.
Expand All @@ -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:
Expand Down

0 comments on commit ebd30ec

Please sign in to comment.