From 791b4a30fd4b1590778a5e47efc9119820e5ceac Mon Sep 17 00:00:00 2001 From: Charles Leifer Date: Mon, 12 Mar 2018 16:22:46 -0500 Subject: [PATCH] 1.9.0 --- CHANGELOG.md | 22 ++++++++++++++++++++-- huey/__init__.py | 2 +- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 856c2196..84ee8c20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,26 @@ Changelog ========= -v1.8.1 (unreleased) +v1.9.1 (unreleased) ------------------- -[View commits](https://github.com/coleifer/huey/compare/1.8.0...HEAD) +[View commits](https://github.com/coleifer/huey/compare/1.9.0...HEAD) + +v1.9.0 +------ + +[View commits](https://github.com/coleifer/huey/compare/1.8.0...1.9.0) + +#### ROLLBACK of 1.8.0 Django Changes + +Due to problems with the django patch that added support for multiple huey +instances, I've decided to rollback those changes. + +Django integration in Huey 1.9.0 will work the same as it had previously in +1.7.x and earlier. + +Apologies, I should have reviewed the patch more thoroughly and insisted on +better test coverage. v1.8.0 ------ @@ -13,6 +29,8 @@ v1.8.0 #### Backwards-incompatible change to Django integration +**NOTE: These changes were remove in 1.9.0** + In 1.8.0, support for multiple huey instances was added (with thanks to @Sebubu and @MarcoGlauser for the patches). Although existing Django/Huey apps should continue to work, there is a new configuration format available and I'd diff --git a/huey/__init__.py b/huey/__init__.py index efbdf215..b1f85576 100644 --- a/huey/__init__.py +++ b/huey/__init__.py @@ -1,6 +1,6 @@ __author__ = 'Charles Leifer' __license__ = 'MIT' -__version__ = '1.8.0' +__version__ = '1.9.0' from huey.api import crontab from huey.api import Huey