diff --git a/changelog.md b/changelog.md index 9585243..17a165f 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,9 @@ # Change history +## v0.7.1 + +- fix a bug where schedules with the same ID and different descriminators were selected when loading the `PeriodicTask` thanks to [Matthew Bronstein](https://github.com/mbronstein1) and [Bazyl Horsey](https://github.com/bazylhorsey) + ## v0.7.0 - added tests diff --git a/setup.py b/setup.py index 79de5ee..e0686ce 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ # Versions should comply with PEP440. For a discussion on single-sourcing # the version across setup.py and the project code, see # https://packaging.python.org/en/latest/single_source_version.html - version="0.7.0", + version="0.7.1", # The project's main homepage. url="https://github.com/farahats9/sqlalchemy-celery-beat", # Choose your license diff --git a/sqlalchemy_celery_beat/__init__.py b/sqlalchemy_celery_beat/__init__.py index ee14911..ec64752 100644 --- a/sqlalchemy_celery_beat/__init__.py +++ b/sqlalchemy_celery_beat/__init__.py @@ -9,7 +9,7 @@ ) from .schedulers import DatabaseScheduler -__version__ = '0.7.0' +__version__ = '0.7.1' __author__ = 'Mohamed Farahat' __contact__ = 'farahats9@yahoo.com' __homepage__ = 'https://github.com/farahats9/sqlalchemy-celery-beat'