Skip to content

Commit

Permalink
Prepare for v1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jodosha committed Jun 12, 2018
1 parent 4220638 commit 9acd2bf
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/hanami/helpers/html_helper/html_builder.rb
Expand Up @@ -383,7 +383,7 @@ def method_missing(method_name, *args, &blk) # rubocop:disable Style/MethodMissi
@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)
Expand Down
2 changes: 1 addition & 1 deletion lib/hanami/helpers/version.rb
Expand Up @@ -3,6 +3,6 @@ module Helpers
# Define version
#
# @since 0.1.0
VERSION = '1.2.1'.freeze
VERSION = '1.2.2'.freeze
end
end
2 changes: 1 addition & 1 deletion spec/unit/hanami/helpers/version_spec.rb
@@ -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

0 comments on commit 9acd2bf

Please sign in to comment.