diff --git a/CHANGELOG.md b/CHANGELOG.md index 0aa0eca1..293801ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ Complete, fast and testable actions for Rack -## v2.1.0.beta1 +## v2.1.0.beta1 - 2023-06-29 ### Added diff --git a/LICENSE.md b/LICENSE.md index ebdf22bb..5cc683bf 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,4 +1,4 @@ -Copyright © 2014-2021 Luca Guidi +Copyright © 2014 Hanami Team MIT License diff --git a/README.md b/README.md index ae859d2d..a9fd93e0 100644 --- a/README.md +++ b/README.md @@ -961,4 +961,4 @@ __Hanami::Controller__ uses [Semantic Versioning 2.0.0](http://semver.org) ## Copyright -Copyright © 2014-2022 Hanami Team – Released under MIT License +Copyright © 2014 Hanami Team – Released under MIT License diff --git a/spec/support/fixtures.rb b/spec/support/fixtures.rb index b564d074..bed1ed1b 100644 --- a/spec/support/fixtures.rb +++ b/spec/support/fixtures.rb @@ -4,10 +4,10 @@ require "digest/md5" require "hanami/router" require "hanami/middleware/body_parser" -require "hanami/utils/escape" -require_relative "./renderer" +require "hanami/view/html" +require_relative "renderer" -require_relative "./validations" +require_relative "validations" HTTP_TEST_STATUSES = { 100 => "Continue", @@ -390,7 +390,7 @@ def handle(*, res) class SafeStringRedirectAction < Hanami::Action def handle(*, res) - location = Hanami::Utils::Escape::SafeString.new("/destination") + location = Hanami::View::HTML::SafeString.new("/destination") res.redirect_to location end end diff --git a/spec/support/isolation_spec_helper.rb b/spec/support/isolation_spec_helper.rb index 5ea1f497..cb263068 100644 --- a/spec/support/isolation_spec_helper.rb +++ b/spec/support/isolation_spec_helper.rb @@ -6,7 +6,7 @@ $LOAD_PATH.unshift "lib" require "hanami/controller" -require_relative "./rspec" +require_relative "rspec" require "hanami/devtools/unit" module RSpec