1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00

Promote sinatra, fixes #3042

This commit is contained in:
Mike Perham 2016-06-29 09:21:17 -07:00
parent a499185e3d
commit bfbb8e8952
3 changed files with 4 additions and 2 deletions

View file

@ -3,6 +3,8 @@
HEAD
-----------
- Sinatra 1.4.x is now a required dependency, avoiding cryptic errors
and old bugs due to people not upgrading Sinatra for years. [#3042]
- Fixed race condition in heartbeat which could rarely lead to lingering
processes on the Busy tab. [#2982]
```ruby

View file

@ -1,4 +1,4 @@
# frozen_string_literal: true
module Sidekiq
VERSION = "4.1.2"
VERSION = "4.1.3"
end

View file

@ -18,8 +18,8 @@ Gem::Specification.new do |gem|
gem.add_dependency 'redis', '~> 3.2', '>= 3.2.1'
gem.add_dependency 'connection_pool', '~> 2.2', '>= 2.2.0'
gem.add_dependency 'concurrent-ruby', '~> 1.0'
gem.add_dependency 'sinatra', '~> 1.4', '>= 1.4.6'
gem.add_development_dependency 'redis-namespace', '~> 1.5', '>= 1.5.2'
gem.add_development_dependency 'sinatra', '~> 1.4', '>= 1.4.6'
gem.add_development_dependency 'minitest', '~> 5.7', '>= 5.7.0'
gem.add_development_dependency 'rake', '~> 10.0'
gem.add_development_dependency 'rails', '~> 4', '>= 3.2.0'