Skip to content

Commit ba7f6c2

Browse files
authored
Merge pull request #296 from kpumuk/preparing-2.21.0
Preparing 2.21.0 release
2 parents 58f412a + 341909b commit ba7f6c2

8 files changed

+12
-261
lines changed

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
# Changelog
22

3-
## 2.21.0 (Development)
3+
## 2.21.0 (April 11, 2024)
4+
5+
Bugfixes:
6+
7+
- Removed a duplicated `title_tag_attributes` configuration from the initializer ([287](https://github.com/kpumuk/meta-tags/pull/287)).
48

59
Changes:
610

711
- Ruby older than 3.0 is no longer supported.
12+
- Added `truncate_on_natural_separator` configuration option to the initializer ([287](https://github.com/kpumuk/meta-tags/pull/287)).
813

914
## 2.20.0 (December 26, 2023)
1015

gemfiles/rails_6.0.gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
meta-tags (2.20.0)
4+
meta-tags (2.21.0)
55
actionpack (>= 6.0.0, < 7.2)
66

77
GEM

gemfiles/rails_6.1.gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
meta-tags (2.20.0)
4+
meta-tags (2.21.0)
55
actionpack (>= 6.0.0, < 7.2)
66

77
GEM

gemfiles/rails_7.0.gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
meta-tags (2.20.0)
4+
meta-tags (2.21.0)
55
actionpack (>= 6.0.0, < 7.2)
66

77
GEM

gemfiles/rails_7.1.gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
meta-tags (2.20.0)
4+
meta-tags (2.21.0)
55
actionpack (>= 6.0.0, < 7.2)
66

77
GEM

gemfiles/rails_7.2.gemfile.lock

-242
This file was deleted.

gemfiles/rails_edge.gemfile.lock

+1-13
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ GIT
4040
PATH
4141
remote: ..
4242
specs:
43-
meta-tags (2.20.0)
43+
meta-tags (2.21.0)
4444
actionpack (>= 6.0.0, < 7.2)
4545

4646
GEM
@@ -82,16 +82,8 @@ GEM
8282
crass (~> 1.0.2)
8383
nokogiri (>= 1.12.0)
8484
minitest (5.21.2)
85-
nokogiri (1.16.3-aarch64-linux)
86-
racc (~> 1.4)
87-
nokogiri (1.16.3-arm-linux)
88-
racc (~> 1.4)
8985
nokogiri (1.16.3-arm64-darwin)
9086
racc (~> 1.4)
91-
nokogiri (1.16.3-x86-linux)
92-
racc (~> 1.4)
93-
nokogiri (1.16.3-x86_64-darwin)
94-
racc (~> 1.4)
9587
nokogiri (1.16.3-x86_64-linux)
9688
racc (~> 1.4)
9789
parallel (1.24.0)
@@ -229,11 +221,7 @@ GEM
229221
zeitwerk (2.6.13)
230222

231223
PLATFORMS
232-
aarch64-linux
233-
arm-linux
234224
arm64-darwin
235-
x86-linux
236-
x86_64-darwin
237225
x86_64-linux
238226

239227
DEPENDENCIES

lib/meta_tags/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module MetaTags
44
# Gem version.
5-
VERSION = "2.20.0"
5+
VERSION = "2.21.0"
66
public_constant :VERSION
77
end

0 commit comments

Comments
 (0)