Skip to content

Commit

Permalink
Bump version to 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dbader committed Jan 21, 2019
1 parent 84447c0 commit 3108fc3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
8 changes: 8 additions & 0 deletions HISTORY.rst
Expand Up @@ -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)
++++++++++++++++++

Expand Down
5 changes: 4 additions & 1 deletion setup.py
Expand Up @@ -14,18 +14,20 @@
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.
"""
with codecs.open(filename, 'r', 'utf8') as f:
return f.read()


setup(
name='schedule',
packages=['schedule'],
Expand All @@ -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',
],
)

0 comments on commit 3108fc3

Please sign in to comment.