Prepare for v2.0.0.alpha7.1

This commit is contained in:
Tim Riley 2022-03-09 23:33:31 +11:00
parent 718eecd0b9
commit d367825d2d
3 changed files with 7 additions and 2 deletions

View File

@ -1,6 +1,11 @@
# Hanami
The web, with simplicity.
## v2.0.0.alpha7.1 - 2020-03-09
## Fixed
- [Tim Riley] Fixed error creating slice classes when the enclosing module did not already exist
## v2.0.0.alpha7 - 2020-03-08
## Added

View File

@ -8,7 +8,7 @@ module Hanami
module Version
# @since 0.9.0
# @api private
VERSION = "2.0.0.alpha7"
VERSION = "2.0.0.alpha7.1"
# @since 0.9.0
# @api private

View File

@ -2,6 +2,6 @@
RSpec.describe "Hanami::VERSION" do
it "returns current version" do
expect(Hanami::VERSION).to eq("2.0.0.alpha7")
expect(Hanami::VERSION).to eq("2.0.0.alpha7.1")
end
end