diff --git a/CHANGELOG.md b/CHANGELOG.md index ba514219..8e2c2708 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,15 @@ Changelog ## master -[View commits](https://github.com/coleifer/huey/compare/2.4.0...HEAD) +[View commits](https://github.com/coleifer/huey/compare/2.4.1...HEAD) + +## 2.4.1 + +* Attempt to reconnect to database if connection becomes unusable (e.g. due to + a server restart). See: `huey.contrib.sql_huey.SqlHuey`. +* Do not use a soft file-lock for `FileStorage` - use `fcntl.flock()` instead. + +[View commits](https://github.com/coleifer/huey/compare/2.4.0...2.4.1) ## 2.4.0 diff --git a/huey/__init__.py b/huey/__init__.py index d53897e6..e711c183 100644 --- a/huey/__init__.py +++ b/huey/__init__.py @@ -1,6 +1,6 @@ __author__ = 'Charles Leifer' __license__ = 'MIT' -__version__ = '2.4.0' +__version__ = '2.4.1' from huey.api import BlackHoleHuey from huey.api import Huey