Skip to content

Commit

Permalink
Release v1.0.0 (#418)
Browse files Browse the repository at this point in the history
  • Loading branch information
SijmenHuizenga committed Jan 30, 2021
1 parent 6f28821 commit 90fb86f
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 3 deletions.
6 changes: 5 additions & 1 deletion AUTHORS.rst
Expand Up @@ -20,4 +20,8 @@ Thanks to all the wonderful folks who have contributed to schedule over the year
- qmorek <https://github.com/qmorek>
- aisk <https://github.com/aisk>
- MichaelCorleoneLi <https://github.com/MichaelCorleoneLi>
- SijmenHuizenga <https://github.com/SijmenHuizenga>
- sijmenhuizenga <https://github.com/SijmenHuizenga>
- eladbi <https://github.com/eladbi>
- chankeypathak <https://github.com/chankeypathak>
- vubon <https://github.com/vubon>
- gaguirregabiria <https://github.com/gaguirregabiria>
20 changes: 20 additions & 0 deletions HISTORY.rst
Expand Up @@ -3,6 +3,26 @@
History
-------

1.0.0 (2021-01-20)
++++++++++++++++++

Depending on your configuration, the following bugfixes might change schedule's behaviour:

- Fix: idle_seconds crashes when no jobs are scheduled. See #401. Thanks @yoonghm!
- Fix: day.at('HH:MM:SS') where HMS=now+10s doesn't run today. See #331. Thanks @qmorek!
- Fix: hour.at('MM:SS'), the seconds are set to 00. See #290. Thanks @eladbi!
- Fix: Long-running jobs skip a day when they finish in the next day #404. Thanks @4379711!

Other changes:

- Dropped Python 2.7 and 3.5 support, added 3.8 and 3.9 support. See #409
- Fix RecursionError when the job is passed to the do function as an arg. See #190. Thanks @connorskees!
- Fix DeprecationWarning of 'collections'. See #296. Thanks @gaguirregabiria!
- Replaced Travis with Github Actions for automated testing
- Revamp and extend documentation. See #395
- Improved tests. Thanks @connorskees and @Jamim!
- Changed log messages to DEBUG level. Thanks @aisk!


0.6.0 (2019-01-20)
++++++++++++++++++
Expand Down
4 changes: 3 additions & 1 deletion docs/development.rst
Expand Up @@ -50,4 +50,6 @@ Merge these changes into master. Finally:
pip install --upgrade setuptools twine wheel
python setup.py sdist bdist_wheel --universal
twine upload --repository schedule dist/*
twine upload --repository schedule dist/*
This project follows `semantic versioning <https://semver.org/>`_.`
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -2,7 +2,7 @@
from setuptools import setup


SCHEDULE_VERSION = '0.6.0'
SCHEDULE_VERSION = '1.0.0'
SCHEDULE_DOWNLOAD_URL = (
'https://github.com/dbader/schedule/tarball/' + SCHEDULE_VERSION
)
Expand Down

0 comments on commit 90fb86f

Please sign in to comment.