Skip to content

Commit

Permalink
Release 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SijmenHuizenga committed Apr 9, 2023
1 parent 3863eff commit 94c0cf0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
11 changes: 10 additions & 1 deletion HISTORY.rst
Expand Up @@ -3,10 +3,19 @@
History
-------

Next release
1.2.0 (2023-04-10)
++++++++++++++++++

- Dropped support for Python 3.6, add support for Python 3.10 and 3.11.
- Add timezone support for .at(). See #517. Thanks @chrimaho!
- Get next run by tag (#463) Thanks @jweijers!
- Add py.typed file. See #521. Thanks @Akuli!

- Fix the re pattern of the 'days'. See #506 Thanks @sunpro108!
- Fix test_until_time failure when run early. See #563. Thanks @emollier!
- Fix crash repr on partially constructed job. See #569. Thanks @CPickens42!
- Code cleanup and modernization. See #567, #536. Thanks @masa-08 and @SergBobrovsky!
- Documentation improvements and fix typos. See #469, #479, #493, #519, #520. Thanks to @NaelsonDouglas, @chrimaho, @rudSarkar

1.1.0 (2021-04-09)
++++++++++++++++++
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -66,9 +66,9 @@
# built documents.
#
# The short X.Y version.
version = u"1.1.0"
version = u"1.2.0"
# The full version, including alpha/beta/rc tags.
release = u"1.1.0"
release = u"1.2.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -2,7 +2,7 @@
from setuptools import setup


SCHEDULE_VERSION = "1.1.0"
SCHEDULE_VERSION = "1.2.0"
SCHEDULE_DOWNLOAD_URL = "https://github.com/dbader/schedule/tarball/" + SCHEDULE_VERSION


Expand Down

0 comments on commit 94c0cf0

Please sign in to comment.