Skip to content

Commit

Permalink
Merge pull request #17 from PipelineDeals/lk_1047628642_sidekiq_5x_usage
Browse files Browse the repository at this point in the history
[LK-1047628642] Publish v2.3.0 requiring sidekiq 5.x
  • Loading branch information
ubermensch committed May 28, 2020
2 parents 2720f56 + 1af0a23 commit 3261884
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 12 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,8 @@
2.3.0
-----------

- Requires `sidekiq` versions `5.x` (previous releases required versions `4.x`)

2.2.4
-----------

Expand Down
23 changes: 13 additions & 10 deletions Gemfile.lock
@@ -1,23 +1,25 @@
PATH
remote: .
specs:
mantle (2.2.3)
mantle (2.3.0)
redis
sidekiq (~> 4.0)
sidekiq (~> 5.0)

GEM
remote: https://rubygems.org/
specs:
coderay (1.1.0)
concurrent-ruby (1.0.1)
connection_pool (2.2.0)
connection_pool (2.2.2)
diff-lcs (1.2.5)
method_source (0.8.2)
pry (0.10.0)
coderay (~> 1.1.0)
method_source (~> 0.8.1)
slop (~> 3.4)
redis (3.2.2)
rack (2.0.9)
rack-protection (2.0.8.1)
rack
redis (4.1.3)
rspec (3.2.0)
rspec-core (~> 3.2.0)
rspec-expectations (~> 3.2.0)
Expand All @@ -31,10 +33,11 @@ GEM
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.2.0)
rspec-support (3.2.2)
sidekiq (4.1.1)
concurrent-ruby (~> 1.0)
connection_pool (~> 2.2, >= 2.2.0)
redis (~> 3.2, >= 3.2.1)
sidekiq (5.2.8)
connection_pool (~> 2.2, >= 2.2.2)
rack (< 2.1.0)
rack-protection (>= 1.5.0)
redis (>= 3.3.5, < 5)
slop (3.5.0)

PLATFORMS
Expand All @@ -46,4 +49,4 @@ DEPENDENCIES
rspec

BUNDLED WITH
1.11.2
2.1.4
2 changes: 1 addition & 1 deletion lib/mantle/version.rb
@@ -1,3 +1,3 @@
module Mantle
VERSION = '2.2.4'
VERSION = '2.3.0'
end
2 changes: 1 addition & 1 deletion mantle.gemspec
Expand Up @@ -18,7 +18,7 @@ Gem::Specification.new do |gem|
gem.require_paths = ["lib"]

gem.add_dependency('redis')
gem.add_dependency('sidekiq', '~> 4.0')
gem.add_dependency('sidekiq', '~> 5.0')

gem.add_development_dependency('rspec')
gem.add_development_dependency('pry')
Expand Down

0 comments on commit 3261884

Please sign in to comment.