Skip to content

Commit

Permalink
Update dev docs
Browse files Browse the repository at this point in the history
Former-commit-id: bf3588dac938acf5e29b8036ed3b5b6035583ca8 [formerly 012001c]
Former-commit-id: e242aa39706b82babbd31e50f3984b867e065e49
  • Loading branch information
shyuep committed Aug 15, 2014
1 parent cffa8e6 commit 389cb1d
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 39 deletions.
23 changes: 23 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,29 @@
Change log
==========

v2.9.14
-------
1. Implements Structure.sort method. Both Structure.sort and the
get_sorted_structure methods now supports all arguments supported by list
.sort().
2. VaspInputSets configs, as well as several other configs now uses yaml. Note
the new dependency on pyyaml. It is highly recommended that you install
pyyaml with the libyaml C bindings.
3. Fix missing spglib dependency.
4. Use monty.serialization for transparent handling of JSON vs YAML.
Requirements updated to monty>=0.3.1.

v2.9.13
-------
1. Urgent bug fix for missing compatibility yamls.

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.
Expand Down
47 changes: 11 additions & 36 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -72,45 +72,20 @@ several advantages over other codes out there:
Latest Change Log
=================

v2.9.16
-------
1. Vastly improved Vasprun parser using cElementTree. Twice as fast,
half as much code and easier to maintain.
2. Improve monty.serialization for transparent handling of JSON vs YAML.
Requirements updated to monty>=0.3.3.
3. Improved handling of Structure manipulations for extremely large
structures (particularly in terms of memory consumption).
4. Minor bug fixes.

v2.9.15
v2.10.0
-------
1. Major update: MPRester now uses Materials API v2! Also major refactoring
of MPRester.
2. Bug fix for XYZ parsing for scientific notation.
3. Update numpy requirements to 1.8+. Fixes memory leak.

v2.9.14
-------
1. Implements Structure.sort method. Both Structure.sort and the
get_sorted_structure methods now supports all arguments supported by list
.sort().
2. VaspInputSets configs, as well as several other configs now uses yaml. Note
the new dependency on pyyaml. It is highly recommended that you install
pyyaml with the libyaml C bindings.
3. Fix missing spglib dependency.
4. Use monty.serialization for transparent handling of JSON vs YAML.
Requirements updated to monty>=0.3.1.

v2.9.13
-------
1. Urgent bug fix for missing compatibility yamls.

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.
2. Vastly improved Vasprun parser using cElementTree. Twice as fast,
half as much code and easier to maintain.
3. Vast improvements to Qchem functionality (Xiaohui Qu).
4. Improved handling of Structure manipulations for extremely large
structures (particularly in terms of memory consumption).
5. Bug fix for XYZ parsing for scientific notation.
6. Improve monty.serialization for transparent handling of JSON vs YAML.
Requirements updated to monty>=0.3.3.
7. Update numpy requirements to 1.8+. Fixes memory leak.
8. Other minor bug fixes.

:doc:`Older versions </changelog>`

Expand Down
4 changes: 2 additions & 2 deletions pymatgen/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"Sai Jayaraman", "Michael Kocher", "Dan Gunter",
"Shreyas Cholia", "Vincent L Chevrier",
"Rickard Armiento"])
__date__ = "Aug 5 2014"
__version__ = "2.9.14"
__date__ = "Aug 15 2014"
__version__ = "2.10.0"

#Useful aliases for commonly used objects and modules.

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def get_spglib_ext():
setup(
name="pymatgen",
packages=find_packages(),
version="2.9.14",
version="2.10.0",
install_requires=["numpy>=1.8", "pyhull>=1.4.3", "PyCifRW>=3.3",
"requests>=1.0", "pybtex>=0.16", "pyyaml>=3.0",
"monty>=0.3.1"],
Expand Down

0 comments on commit 389cb1d

Please sign in to comment.