diff --git a/CHANGELOG.md b/CHANGELOG.md index cb39e2a2..e72f8bbd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,14 @@ Changelog ## master -[View commits](https://github.com/coleifer/huey/compare/2.5.1...HEAD) +[View commits](https://github.com/coleifer/huey/compare/2.5.2...HEAD) + +## 2.5.2 + +* Prevent bad task serialization in schedule from causing a batch of tasks + to be lost, see #815.. +* Ensure we catch ResultTimeout which may occur when used with Sentinel, #813. +* Remove junk SQS implementation I was testing out. ## 2.5.1 diff --git a/huey/__init__.py b/huey/__init__.py index 2813bc3f..af8275f1 100644 --- a/huey/__init__.py +++ b/huey/__init__.py @@ -1,6 +1,6 @@ __author__ = 'Charles Leifer' __license__ = 'MIT' -__version__ = '2.5.1' +__version__ = '2.5.2' from huey.api import BlackHoleHuey from huey.api import Huey