Skip to content

Commit feb52a2

Browse files
committed
Enforce i18n >= 0.8.0 in modern Ruby versions
See GHSA-34hf-g744-jw64
1 parent d16f8da commit feb52a2

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

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

33
## [Unreleased]
44

5+
* Require i18n >= 0.8.0 in modern Ruby versions - https://github.com/advisories/GHSA-34hf-g744-jw64
6+
57
[Unreleased]: https://github.com/validates-email-format-of/validates_email_format_of/compare/v1.7.2...master
68

79
## [1.7.2]

validates_email_format_of.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Gem::Specification.new do |s|
1616
if RUBY_VERSION < "1.9.3"
1717
s.add_dependency "i18n", "< 0.7.0"
1818
else
19-
s.add_dependency "i18n"
19+
s.add_dependency "i18n", ">= 0.8.0"
2020
end
2121

2222
s.add_development_dependency "activemodel"

0 commit comments

Comments
 (0)