diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c01a55..c4fafdc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,3 +26,8 @@ Added tab(\t) to the regex for delimiter when parsing keyword-values. ----- * Fix bugs where tags with `False` values ignored when reading and wrongly set to `True` when writing. This affects input/output using python types. + +0.1.6 +----- + +* minor package metadata updates diff --git a/setup.py b/setup.py index e160c6b..36dead8 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from os import path import os -version = '0.1.5' +version = '0.1.6' if __name__ == '__main__': # Check if in a CI environment @@ -35,7 +35,7 @@ long_description_content_type='text/markdown', name='castepinput', author='Bonan Zhu', - author_email='bon.zhu@protonmail.com', + author_email='zhubonan@outlook.com', classifiers=[ "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", @@ -44,7 +44,7 @@ "Development Status :: 4 - Beta" ], description="A general reader/writer for CASTEP inputs", - url="https://github.com/bz1/castepinput", + url="https://github.com/zhubonan/castepinput", license="MIT License", version=version, extras_require={'testing': ['pytest']},