From a94fdacfe616d204ef58617ad9a2dc060bbc1c1b Mon Sep 17 00:00:00 2001 From: David Spencer Date: Tue, 28 Jan 2025 21:31:25 -0500 Subject: [PATCH] Relax atomic_lti requirements 4.0 is compatible with atomic_tenant --- Gemfile.lock | 4 ++-- atomic_tenant.gemspec | 2 +- lib/atomic_tenant/version.rb | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 11b3eb1..ab4c6f0 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,8 +1,8 @@ PATH remote: . specs: - atomic_tenant (1.3.1) - atomic_lti (>= 1.3, < 4) + atomic_tenant (1.4.1) + atomic_lti (>= 1.3, < 5) rails (>= 7.0, < 9) GEM diff --git a/atomic_tenant.gemspec b/atomic_tenant.gemspec index ea75d84..ec1c657 100644 --- a/atomic_tenant.gemspec +++ b/atomic_tenant.gemspec @@ -22,7 +22,7 @@ Gem::Specification.new do |spec| Dir['{app,config,db,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.md'] end - spec.add_dependency 'atomic_lti', '>= 1.3', '< 4' + spec.add_dependency 'atomic_lti', '>= 1.3', '< 5' spec.add_dependency 'rails', '>= 7.0', '< 9' spec.add_development_dependency 'rspec', '~> 2.0' end diff --git a/lib/atomic_tenant/version.rb b/lib/atomic_tenant/version.rb index 4f28cc0..96a2279 100644 --- a/lib/atomic_tenant/version.rb +++ b/lib/atomic_tenant/version.rb @@ -1,3 +1,3 @@ module AtomicTenant - VERSION = '1.3.1' + VERSION = '1.4.1' end