Skip to content

Commit

Permalink
Prepare for v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jodosha committed Nov 22, 2017
1 parent e7b4dbf commit 2ba2a70
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,11 @@
# Hanami::Controller
Complete, fast and testable actions for Rack

## v1.1.1 - 2017-11-22
### Fixed
- [Luca Guidi] Ensure `Hanami::Action#send_file` and `#unsafe_send_file` to run `after` action callbacks
- [Luca Guidi] Ensure Rack env to have the `REQUEST_METHOD` key set to `GET` during actions unit tests

## v1.1.0 - 2017-10-25
### Added
- [Luca Guidi] Introduce `Hanami::Action::CookieJar#each` to iterate through action's `cookies`
Expand Down
2 changes: 1 addition & 1 deletion lib/hanami/controller/version.rb
Expand Up @@ -3,6 +3,6 @@ module Controller
# Defines the version
#
# @since 0.1.0
VERSION = '1.1.0'.freeze
VERSION = '1.1.1'.freeze
end
end
2 changes: 1 addition & 1 deletion spec/unit/hanami/controller/version_spec.rb
@@ -1,5 +1,5 @@
RSpec.describe "Hanami::Controller::VERSION" do
it "returns current version" do
expect(Hanami::Controller::VERSION).to eq("1.1.0")
expect(Hanami::Controller::VERSION).to eq("1.1.1")
end
end

0 comments on commit 2ba2a70

Please sign in to comment.