diff --git a/CHANGES.md b/CHANGES.md index 4b4d6d07..5428c715 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,11 @@ +### 0.5.2 + +(April 14th, 2015) + +- Support SSL connection to Redis (requires redis-py>=2.10) +- Fix to prevent deep call stacks with large queues + + ### 0.5.1 (March 9th, 2015) diff --git a/rq/version.py b/rq/version.py index 7b8e6588..4b0ec94d 100644 --- a/rq/version.py +++ b/rq/version.py @@ -2,4 +2,4 @@ from __future__ import (absolute_import, division, print_function, unicode_literals) -VERSION = '0.5.1' +VERSION = '0.5.2'