Prepare for v2.0.0.alpha6

This commit is contained in:
Luca Guidi 2022-02-09 09:26:08 +01:00
parent 100c5d5486
commit 48deb148c4
No known key found for this signature in database
GPG Key ID: 039526B19941B9EB
4 changed files with 13 additions and 5 deletions

View File

@ -1,6 +1,16 @@
# Hanami::Utils
Ruby core extentions and class utilities for Hanami
## v2.0.0.alpha6 - 2022-02-10
### Added
- [Luca Guidi] Official support for Ruby: MRI 3.0 and 3.1
### Fixed
- [Rob Jacoby] Allow `Hanami::Logger#initialize` to accept `File::NULL` as `stream:` argument
### Changed
- [Luca Guidi] Drop support for Ruby: MRI 2.6 and 2.7.
## v2.0.0.alpha3 - 2021-11-09
No changes.

View File

@ -145,6 +145,4 @@ __Hanami::Utils__ uses [Semantic Versioning 2.0.0](http://semver.org)
## Copyright
Copyright © 2014-2021 Luca Guidi Released under MIT License
This project was formerly known as Lotus (`lotus-utils`).
Copyright © 2014-2022 Hanami Team Released under MIT License

View File

@ -5,6 +5,6 @@ module Hanami
# Defines the version
#
# @since 0.1.0
VERSION = "2.0.0.alpha3"
VERSION = "2.0.0.alpha6"
end
end

View File

@ -2,6 +2,6 @@
RSpec.describe "Hanami::Utils::VERSION" do
it "exposes version" do
expect(Hanami::Utils::VERSION).to eq("2.0.0.alpha3")
expect(Hanami::Utils::VERSION).to eq("2.0.0.alpha6")
end
end