From b9a0714de08c8f2874878df882ee608bd15bc058 Mon Sep 17 00:00:00 2001 From: Anubhav Jain Date: Fri, 5 Sep 2014 13:18:11 -0700 Subject: [PATCH] update to v0.89 --- docs/changelog.rst | 8 ++++++++ fireworks/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 61593c188..70e4c8ae5 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,14 @@ FireWorks Changelog =================== +**v0.89** + +* Fix small FireTaskMeta issue (G. Petretto w/S.P. Ong) +* simplify some imports +* Add reservation display mode (S.P. Ong) +* add updated_on to FW which updates whenever FW changes state +* improve docs + **v0.88** * Add many more unit tests (B. Medasani) diff --git a/fireworks/__init__.py b/fireworks/__init__.py index 98e71ca35..d659b3f5b 100644 --- a/fireworks/__init__.py +++ b/fireworks/__init__.py @@ -1,6 +1,6 @@ import os -__version__ = '0.88' +__version__ = '0.89' FW_INSTALL_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) # These imports allow a much simpler import of core Fireworks functionality. diff --git a/setup.py b/setup.py index 35af697f9..e3ae4c9fc 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ if __name__ == "__main__": setup( name='FireWorks', - version='0.88', + version='0.89', description='FireWorks workflow software', long_description=open(os.path.join(module_dir, 'README.rst')).read(), url='https://github.com/materialsproject/fireworks',