Skip to content

Commit c538420

Browse files
authored
Merge pull request #285 from kpumuk/release-2.20.0
Preparing release 2.20.0
2 parents 6f40531 + e0ba355 commit c538420

8 files changed

+8
-11
lines changed

CHANGELOG.md

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

3-
## 2.20.0 (Development)
3+
## 2.20.0 (December 26, 2023)
44

55
Features:
66

@@ -10,9 +10,6 @@ Features:
1010
Changes:
1111

1212
- Switched builds from CircleCI to Github Actions ([273](https://github.com/kpumuk/meta-tags/pull/273))
13-
14-
Changes:
15-
1613
- Ruby on Rails < 6.0 is no longer supported.
1714

1815
## 2.19.0 (October 5, 2023) [](https://github.com/kpumuk/meta-tags/compare/v2.18.0...v2.19.0)

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.19.0)
4+
meta-tags (2.20.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.19.0)
4+
meta-tags (2.20.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.19.0)
4+
meta-tags (2.20.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.19.0)
4+
meta-tags (2.20.0)
55
actionpack (>= 6.0.0, < 7.2)
66

77
GEM

gemfiles/rails_7.2.gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ GIT
3939
PATH
4040
remote: ..
4141
specs:
42-
meta-tags (2.19.0)
42+
meta-tags (2.20.0)
4343
actionpack (>= 6.0.0, < 7.2)
4444

4545
GEM

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.19.0"
5+
VERSION = "2.20.0"
66
public_constant :VERSION
77
end

meta-tags.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
1717
spec.platform = Gem::Platform::RUBY
1818
spec.required_ruby_version = ">= 2.7.0"
1919

20-
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(\.|(bin|test|spec|features)/)}) }
20+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(\.|Gemfile|Appraisals|Steepfile|(bin|spec|gemfiles)/)}) }
2121
spec.bindir = "exe"
2222
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
2323
spec.require_paths = ["lib"]

0 commit comments

Comments
 (0)