From 3c80abb5f8dc5eb7c19904ce22102b83c5fac817 Mon Sep 17 00:00:00 2001 From: Bonan Zhu Date: Wed, 23 Dec 2020 20:43:42 +0000 Subject: [PATCH] Updated CHANGELOG and setup.py --- CHANGELOG.md | 12 ++++++++++-- setup.py | 9 +++++---- 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4a3c89..1c01a55 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,18 +3,26 @@ CHANGELOG 0.1.0 -------- + Initial release 0.1.2 ------ + Fixed project home link in setup.py 0.1.3 ----- -Added tab(\t) to the regex for delimiter when parsing keyword-values + +Added tab(\t) to the regex for delimiter when parsing keyword-values. 0.1.4 ----- + * Fixed bugs when converting to python type. This function should be used with causion. -* Fixed a critical bug when converting cell parameters into cell vectors +* Fixed a critical bug when converting cell parameters into cell vectors. + +0.1.5 +----- +* Fix bugs where tags with `False` values ignored when reading and wrongly set to `True` when writing. This affects input/output using python types. diff --git a/setup.py b/setup.py index 1cc5797..e160c6b 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ if ci_version: # If this a release, check the consistency if is_tagged: - assert ci_version == version, 'Inonsistency between versions' + assert ci_version == version, 'Inconsistency between versions' else: version = ci_version @@ -37,14 +37,15 @@ author='Bonan Zhu', author_email='bon.zhu@protonmail.com', classifiers=[ - "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", "Development Status :: 4 - Beta" ], description="A general reader/writer for CASTEP inputs", - url="https://gitlab.com/bz1/castepinput", + url="https://github.com/bz1/castepinput", license="MIT License", version=version, extras_require={'testing': ['pytest']}, install_requires=["numpy", "six"]) -