From 37c6d1a34d1199e455a382fdd687780599444be3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Mar 2021 23:58:47 +0000 Subject: [PATCH] Update i18n requirement from ~> 0.5 to >= 0.5, < 2.0 Updates the requirements on [i18n](https://github.com/ruby-i18n/i18n) to permit the latest version. - [Release notes](https://github.com/ruby-i18n/i18n/releases) - [Changelog](https://github.com/ruby-i18n/i18n/blob/master/CHANGELOG.md) - [Commits](https://github.com/ruby-i18n/i18n/compare/v0.6.5...v1.8.9) Signed-off-by: dependabot[bot] --- Gemfile.lock | 6 ++++-- faker.gemspec | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 10622693b0..005ef8f858 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,12 +2,14 @@ PATH remote: . specs: faker (1.2.0) - i18n (~> 0.5) + i18n (>= 0.5, < 2.0) GEM remote: http://rubygems.org/ specs: - i18n (0.6.5) + concurrent-ruby (1.1.8) + i18n (1.8.9) + concurrent-ruby (~> 1.0) rake (10.1.0) test-unit (2.5.5) diff --git a/faker.gemspec b/faker.gemspec index 28792b7b7a..d697284df3 100644 --- a/faker.gemspec +++ b/faker.gemspec @@ -13,7 +13,7 @@ Gem::Specification.new do |s| s.rubyforge_project = "faker" - s.add_dependency('i18n', '~> 0.5') + s.add_dependency('i18n', '>= 0.5', '< 2.0') s.files = `git ls-files -- lib/*`.split("\n") + %w(History.txt License.txt README.md) s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")