From 4b46bdaefe50a65b6219de29213374168cd1f846 Mon Sep 17 00:00:00 2001 From: Sijmen Date: Sun, 1 Oct 2023 15:50:01 +0200 Subject: [PATCH] Release 1.2.1 (#600) --- AUTHORS.rst | 3 +++ HISTORY.rst | 6 ++++++ docs/conf.py | 4 ++-- setup.py | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/AUTHORS.rst b/AUTHORS.rst index c1bd7774..63189ee0 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -42,3 +42,6 @@ Thanks to all the wonderful folks who have contributed to schedule over the year - CPickens42 - emollier - sunpro108 +- kurtasov +- AnezeR + diff --git a/HISTORY.rst b/HISTORY.rst index 7836165c..fa6866db 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,12 @@ History ------- +1.2.1 (2023-11-01) +++++++++++++++++++ + +- Fix bug where schedule was off when using .at with timezone (#583) Thanks @AnezeR! + + 1.2.0 (2023-04-10) ++++++++++++++++++ diff --git a/docs/conf.py b/docs/conf.py index 083d3532..b5d1e6cd 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -66,9 +66,9 @@ # built documents. # # The short X.Y version. -version = u"1.2.0" +version = u"1.2.1" # The full version, including alpha/beta/rc tags. -release = u"1.2.0" +release = u"1.2.1" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index a56d374a..1f5df096 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup -SCHEDULE_VERSION = "1.2.0" +SCHEDULE_VERSION = "1.2.1" SCHEDULE_DOWNLOAD_URL = "https://github.com/dbader/schedule/tarball/" + SCHEDULE_VERSION