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

notes, bump

This commit is contained in:
Mike Perham 2016-08-20 14:51:48 -07:00
parent a7814923fc
commit 6caed02533
2 changed files with 13 additions and 1 deletions

View file

@ -1,5 +1,17 @@
# Sidekiq Changes
4.2.0
-----------
- Remove Sinatra dependency. Sidekiq's Web UI now uses Rack directly.
Thank you to Sidekiq's newest committer, **badosu**, for writing the code
and doing a lot of testing to ensure compatibility with many different
3rd party plugins. If your Web UI works with 4.1.4 but fails with
4.2.0, please open an issue.
- Add support for development mode code reloading with Rails 5's new
thread-safe Interlock API. With Rails 5, you no longer need to
restart Sidekiq when making code changes locally!
4.1.4
-----------

View file

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