Skip to content

Commit

Permalink
Updated CHANGELOG and setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
zhubonan committed Dec 23, 2020
1 parent acb3bf5 commit 3c80abb
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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"])

0 comments on commit 3c80abb

Please sign in to comment.