Prepare for v1.2.2

This commit is contained in:
Luca Guidi 2018-06-12 10:56:00 +02:00
parent 42206383ef
commit 9acd2bf17b
No known key found for this signature in database
GPG Key ID: BF740F83C3EEF2F1
4 changed files with 7 additions and 3 deletions

View File

@ -1,6 +1,10 @@
# Hanami::Helpers
View helpers for Ruby web applications
## v1.2.2 - 2018-06-12
### Fixed
- [Sean Collins] Ensure `csrf_meta_tags` helper to generate `<meta>` tags with `content` attribute instead of `value`
## v1.2.1 - 2018-06-04
### Fixed
- [Lucas Gomes] Ensure to mark `<option>` as selected when `select` helper has a collection of non-`String` values

View File

@ -383,7 +383,7 @@ module Hanami
@context.__send__(method_name, *args, &blk)
end
# @since x.x.x
# @since 1.2.2
# @api private
def respond_to_missing?(method_name, include_all)
@context.respond_to?(method_name, include_all)

View File

@ -3,6 +3,6 @@ module Hanami
# Define version
#
# @since 0.1.0
VERSION = '1.2.1'.freeze
VERSION = '1.2.2'.freeze
end
end

View File

@ -1,5 +1,5 @@
RSpec.describe "Hanami::Helpers::VERSION" do
it "exposes version" do
expect(Hanami::Helpers::VERSION).to eq("1.2.1")
expect(Hanami::Helpers::VERSION).to eq("1.2.2")
end
end