diff --git a/CHANGES.md b/CHANGES.md index 9d33cebf..aef98199 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,11 @@ +### 0.4.3 +(May 6th, 2014) + +- Make job and queue classes overridable. Thanks, Marko! +- Don't require connection for @job decorator at definition time. Thanks, Sasha! +- Syntactic code cleanup. + + ### 0.4.2 (April 28th, 2014) diff --git a/rq/version.py b/rq/version.py index 1497719f..aac167e3 100644 --- a/rq/version.py +++ b/rq/version.py @@ -1,4 +1,4 @@ # -*- coding: utf-8 -*- from __future__ import (absolute_import, division, print_function, unicode_literals) -VERSION = '0.4.2' +VERSION = '0.4.3'