Skip to content

Commit

Permalink
Updated changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
kpumuk committed Dec 26, 2023
1 parent 79875a6 commit cc55daf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## 2.20.0 (Development)

Features:

- Introduced `title_tag_attributes` configuration option to add HTML attributes to the title tag ([284](https://github.com/kpumuk/meta-tags/pull/284)).

Changes:

- Switched builds from CircleCI to Github Actions ([273](https://github.com/kpumuk/meta-tags/pull/273))
Expand Down
2 changes: 1 addition & 1 deletion lib/meta_tags/renderer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def render_icon(tags)
# @see TextNormalizer
#
def render_with_normalization(tags, name)
value = TextNormalizer.public_send("normalize_#{name}", meta_tags.extract(name))
value = TextNormalizer.public_send(:"normalize_#{name}", meta_tags.extract(name))
normalized_meta_tags[name] = value
tags << Tag.new(:meta, name: name, content: value) if value.present?
end
Expand Down

0 comments on commit cc55daf

Please sign in to comment.