From 393326036e6513fbc2720ef0be2f7bf6ce6e2455 Mon Sep 17 00:00:00 2001 From: Banura Randika Date: Wed, 20 May 2020 09:58:09 +0530 Subject: [PATCH] Version issue fix --- Gemfile | 2 +- Gemfile.lock | 6 +++--- fi_seo.gemspec | 2 +- lib/acts_as_seoable/version.rb | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Gemfile b/Gemfile index d25e5a8..cdfa9bf 100644 --- a/Gemfile +++ b/Gemfile @@ -6,5 +6,5 @@ gemspec gem 'rake', '~> 12.0' gem 'rspec', '~> 3.0' gem 'meta-tags', '~> 2.13' -gem 'activerecord' +gem 'activerecord', '>= 5.0', '< 6.1' gem 'xml-sitemap', '~> 1.3', '>= 1.3.3' \ No newline at end of file diff --git a/Gemfile.lock b/Gemfile.lock index 6553220..b7c403b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,8 +1,8 @@ PATH remote: . specs: - fi_seo (0.1.2) - activerecord + fi_seo (0.1.3) + activerecord (>= 5.0, < 6.1) meta-tags (~> 2.13) xml-sitemap (~> 1.3, >= 1.3.3) @@ -82,7 +82,7 @@ PLATFORMS ruby DEPENDENCIES - activerecord + activerecord (>= 5.0, < 6.1) fi_seo! meta-tags (~> 2.13) rake (~> 12.0) diff --git a/fi_seo.gemspec b/fi_seo.gemspec index 4955887..f40fc50 100644 --- a/fi_seo.gemspec +++ b/fi_seo.gemspec @@ -23,7 +23,7 @@ Gem::Specification.new do |spec| spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] - spec.add_runtime_dependency 'activerecord' + spec.add_runtime_dependency 'activerecord', '>= 5.0', '< 6.1' spec.add_runtime_dependency 'meta-tags', '~> 2.13' spec.add_runtime_dependency 'xml-sitemap', '~> 1.3', '>= 1.3.3' end diff --git a/lib/acts_as_seoable/version.rb b/lib/acts_as_seoable/version.rb index bc2347c..58821c3 100644 --- a/lib/acts_as_seoable/version.rb +++ b/lib/acts_as_seoable/version.rb @@ -1,3 +1,3 @@ module FiSeo - VERSION = "0.1.2" + VERSION = "0.1.3" end