diff --git a/CHANGES.rst b/CHANGES.rst index 810fb937310..1139f6f889e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,11 @@ Change log ========== +v3.3.2 +------ +* Bug fixes for pymatgen.io.abinit +* Other minor big fixes. + v3.3.1 ------ * Minor bug fix release for pickle and elastic constants. diff --git a/docs/change_log.rst b/docs/change_log.rst index 810fb937310..1139f6f889e 100644 --- a/docs/change_log.rst +++ b/docs/change_log.rst @@ -1,6 +1,11 @@ Change log ========== +v3.3.2 +------ +* Bug fixes for pymatgen.io.abinit +* Other minor big fixes. + v3.3.1 ------ * Minor bug fix release for pickle and elastic constants. diff --git a/docs/latest_changes.rst b/docs/latest_changes.rst index bed2cfdf7dd..67eac0b91a3 100644 --- a/docs/latest_changes.rst +++ b/docs/latest_changes.rst @@ -1,6 +1,7 @@ Change log ========== -v3.3.1 +v3.3.2 ------ -* Minor bug fix release for pickle and elastic constants. +* Bug fixes for pymatgen.io.abinit +* Other minor big fixes. diff --git a/pymatgen/__init__.py b/pymatgen/__init__.py index 73c4c1dad53..155a0d59ed7 100644 --- a/pymatgen/__init__.py +++ b/pymatgen/__init__.py @@ -4,8 +4,8 @@ __email__ ="pymatgen@googlegroups.com" __maintainer__ = "Shyue Ping Ong" __maintainer_email__ ="shyuep@gmail.com" -__date__ = "Jan 4 2016" -__version__ = "3.3.1" +__date__ = "Jan 11 2016" +__version__ = "3.3.2" # Useful aliases for commonly used objects and modules. diff --git a/setup.py b/setup.py index 8e184f8cb39..afe6469fe33 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ def get_spglib_ext(): setup( name="pymatgen", packages=find_packages(), - version="3.3.1", + version="3.3.2", install_requires=["numpy>=1.9", "six", "atomicfile", "requests", "pybtex", "pyyaml", "monty>=0.7.0", "scipy>=0.14", "tabulate", "enum34"],