diff --git a/CHANGELOG b/CHANGELOG index 1e1ea0d18..891852013 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,8 @@ -2.1 - 2010-11-14 +2.1.1 - 2010-11-14 +* Fix issue with worker name not getting properly set when locking a job +* Fixes for YAML serialization + +2.1.0 - 2010-11-14 * Added enqueue, before, after, success, error, and failure. See the README * Remove Merb support * Remove all non Active Record backends into separate gems. See https://github.com/collectiveidea/delayed_job/wiki/Backends diff --git a/delayed_job.gemspec b/delayed_job.gemspec index 8e67831e5..5b8031999 100644 --- a/delayed_job.gemspec +++ b/delayed_job.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |s| s.name = 'delayed_job' - s.version = '2.1.0' + s.version = '2.1.1' s.authors = ["Brandon Keepers", "Tobias L\303\274tke"] s.summary = 'Database-backed asynchronous priority queue system -- Extracted from Shopify' s.description = "Delayed_job (or DJ) encapsulates the common pattern of asynchronously executing longer tasks in the background. It is a direct extraction from Shopify where the job table is responsible for a multitude of core tasks.