From bb4611a2c3bd502ea4ec1f1e2b697e21fbab6dc9 Mon Sep 17 00:00:00 2001 From: Mahdi Yusuf Date: Wed, 7 Feb 2018 16:14:27 -0500 Subject: [PATCH] 1.0.0 --- CHANGES.rst | 4 ++-- docs/index.rst | 2 +- setup.py | 5 +++-- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 4693a65..3b8dfc7 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,11 +1,11 @@ Release History --------------- -0.6.0 +1.0.0 +++++ This release cleans up a lot of older code and makes some small modifications to the `Delorean` API to make it more -Pythonic. 0.6.0 includes support for humanizing a `Delorean` object, as well as outputing a localized string +Pythonic. 1.0.0 includes support for humanizing a `Delorean` object, as well as outputing a localized string representing the `Delorean` object. This change introduces the following breaking changes: diff --git a/docs/index.rst b/docs/index.rst index c68264a..10f4df7 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -24,7 +24,7 @@ Pretty much make you a badass, time traveller. Interface Update ^^^^^^^^^^^^^^^^ -Version 0.6.0 introduces the following breaking changes: +Version 1.0.0 introduces the following breaking changes: - `Delorean.epoch` is a property, not a function. - `Delorean.midnight` is a property, not a function. - `Delorean.naive` is a property, not a function. diff --git a/setup.py b/setup.py index 318f6c6..5bdcd7d 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ install_requires=dependencies, test_suite = 'tests.test_data', long_description=open('README.rst').read(), - classifiers=( + classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Natural Language :: English', @@ -42,5 +42,6 @@ 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', - ), + 'Programming Language :: Python :: 3.6', + ], )