Skip to content

Commit

Permalink
Prepare for v2.1.0.beta1
Browse files Browse the repository at this point in the history
  • Loading branch information
jodosha committed Jun 29, 2023
1 parent 074646e commit 2eb8390
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Complete, fast and testable actions for Rack

## v2.1.0.beta1
## v2.1.0.beta1 - 2023-06-29

### Added

Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright © 2014-2021 Luca Guidi
Copyright © 2014 Hanami Team

MIT License

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
8 changes: 4 additions & 4 deletions spec/support/fixtures.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion spec/support/isolation_spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

$LOAD_PATH.unshift "lib"
require "hanami/controller"
require_relative "./rspec"
require_relative "rspec"
require "hanami/devtools/unit"

module RSpec
Expand Down

0 comments on commit 2eb8390

Please sign in to comment.