From 3108fc3194c2f3071d6e41adfd21577fc62c52fc Mon Sep 17 00:00:00 2001 From: Dan Bader Date: Sun, 20 Jan 2019 16:58:33 -0800 Subject: [PATCH] Bump version to 0.6.0 --- HISTORY.rst | 8 ++++++++ setup.py | 5 ++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index cd3f186b..deacb2f5 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,14 @@ History ------- + +0.6.0 (2019-01-20) +++++++++++++++++++ + +- Make at() accept timestamps with 1 second precision (#267). Thanks @NathanWailes! +- Introduce proper exception hierarchy (#271). Thanks @ConnorSkees! + + 0.5.0 (2017-11-16) ++++++++++++++++++ diff --git a/setup.py b/setup.py index f6ae20d4..27f04a89 100644 --- a/setup.py +++ b/setup.py @@ -14,11 +14,12 @@ from setuptools import setup -SCHEDULE_VERSION = '0.5.0' +SCHEDULE_VERSION = '0.6.0' SCHEDULE_DOWNLOAD_URL = ( 'https://github.com/dbader/schedule/tarball/' + SCHEDULE_VERSION ) + def read_file(filename): """ Read a utf8 encoded text file and return its contents. @@ -26,6 +27,7 @@ def read_file(filename): with codecs.open(filename, 'r', 'utf8') as f: return f.read() + setup( name='schedule', packages=['schedule'], @@ -49,6 +51,7 @@ def read_file(filename): 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Natural Language :: English', ], )