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

Bump celluloid

This commit is contained in:
Mike Perham 2012-06-01 08:24:01 -07:00
parent da02a0a0c0
commit 5de88e5ef3
2 changed files with 4 additions and 2 deletions

View file

@ -1,7 +1,7 @@
2.0.0
-----------
**SCHEDULED JOBS**!
- **SCHEDULED JOBS**!
You can now use `perform_at` and `perform_in` to schedule jobs
to run at arbitrary points in the future, like so:
@ -30,6 +30,8 @@ useful enough to implement in Sidekiq proper.
- Fixed issues due to Redis 3.x API changes. Sidekiq now requires
the Redis 3.x client.
- Inline testing now round trips arguments through JSON to catch
serialization issues (betelgeuse)
1.2.1
-----------

View file

@ -16,7 +16,7 @@ Gem::Specification.new do |gem|
gem.add_dependency 'redis', '~> 3'
gem.add_dependency 'redis-namespace'
gem.add_dependency 'connection_pool', '~> 0.9.0'
gem.add_dependency 'celluloid', '~> 0.10.0'
gem.add_dependency 'celluloid', '~> 0.11.0'
gem.add_dependency 'multi_json', '~> 1'
gem.add_development_dependency 'minitest', '~> 3'
gem.add_development_dependency 'sinatra'