diff --git a/HISTORY.md b/HISTORY.md index 5297053ae..719e6d0ac 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,25 @@ +## 1.20.0 (2012-02-17) + +* Fixed demos for ruby 1.9 (@BMorearty, #445) +* Fixed `#requeue` tests (@hone, #500) +* Web UI: optional trailing slashes of URLs (@elisehuard, #449) +* Allow * to appear anywhere in queue list (@tapajos, #405, #407) +* Wait for child with specific PID (@jacobkg) +* #decode raise takes a string when re-raising as a different exception class (Trevor Hart) +* Use Sinatra's `pubilc_folder` if it exists (@defunkt, #420, #421) +* Assign the job's worker before calling `before_fork` (@quirkey) +* Fix Resque::Helpers#constantize to work correctly on 1.9.2 (@rtlong) +* Added before & after hooks for dequeue (@humancopy, #398) +* daemonize support using `ENV["BACKGROUND"]` (@chrisleishman) +* requeue and remove failed jobs by queue name (@evanwhalen) +* `-r` flag for resque-web for redis connection (@gjastrab) +* Added `Resque.enqueue_to`: allows you to specif the queue and still run hooks (@dan-g) +* Web UI: Set the default encoding to UTF-8 (@elubow) +* fix finding worker pids on JRuby (John Andrews + Andrew Grieser) +* Added distributed redis support (@stipple) +* Added better failure hooks (@raykrueger) +* Added before & after dequeue hooks (@humancopy) + ## 1.19.0 (2011-09-01) * Added Airbrake (formerly Hoptoad) support. diff --git a/lib/resque/version.rb b/lib/resque/version.rb index 40e013a90..35751a1c2 100644 --- a/lib/resque/version.rb +++ b/lib/resque/version.rb @@ -1,3 +1,3 @@ module Resque - Version = VERSION = '1.19.0' + Version = VERSION = '1.20.0' end