From c614556ed8e99731e2531b6e3da37b57c6df466b Mon Sep 17 00:00:00 2001 From: __sp__ Date: Mon, 21 Jul 2014 20:14:07 -0700 Subject: [PATCH] Update dev docs Former-commit-id: 11c87e4966225b5435da58ec3ffff8cd0ffed712 [formerly 374d0fd080384d110a22efe159cfab2af942b776] Former-commit-id: 3d2d630de02b722aac2c5d563a389e8eb67ffa74 --- docs/index.rst | 7 +++++++ pymatgen/__init__.py | 4 ++-- requirements-travis.txt | 3 ++- setup.py | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/docs/index.rst b/docs/index.rst index 50b55392d1f..58c3dec6338 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -72,6 +72,13 @@ several advantages over other codes out there: Latest Change Log ================= +v2.9.12 +------- +1. Defect transformations (Bharat). +2. Support for optical properties (Geoffroy Hautier and David Waroquiers). +3. Improved support for some VASP output files (XDATCAR and OSZICAR). +4. Refactored compatibilities now uses YAML for ease of reading. + v2.9.11 ------- 1. Bug fix for get_xrd_plot. diff --git a/pymatgen/__init__.py b/pymatgen/__init__.py index 36533c4fc4d..ca8d2992368 100644 --- a/pymatgen/__init__.py +++ b/pymatgen/__init__.py @@ -3,8 +3,8 @@ "Sai Jayaraman", "Michael Kocher", "Dan Gunter", "Shreyas Cholia", "Vincent L Chevrier", "Rickard Armiento"]) -__date__ = "Jun 6 2014" -__version__ = "2.9.11" +__date__ = "Jul 21 2014" +__version__ = "2.9.12" #Useful aliases for commonly used objects and modules. diff --git a/requirements-travis.txt b/requirements-travis.txt index 2804a57fee6..5068b246ff3 100644 --- a/requirements-travis.txt +++ b/requirements-travis.txt @@ -4,4 +4,5 @@ numpy==1.8.1 pybtex==0.17 requests==2.2.1 monty==0.2.2 -pyhull==1.4.3 \ No newline at end of file +pyhull==1.4.3 +pyyaml==3.10 \ No newline at end of file diff --git a/setup.py b/setup.py index 16567104292..67d6d50c231 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ def get_spglib_ext(): setup( name="pymatgen", packages=find_packages(), - version="2.9.11", + version="2.9.12", install_requires=["numpy>=1.5", "pyhull>=1.4.3", "PyCifRW>=3.3", "requests>=1.0", "pybtex>=0.16", "pyyaml>=3.0", "monty>=0.2.2"],