From 049772f58b897d2ba3e9419b6e223b9471683741 Mon Sep 17 00:00:00 2001 From: Anubhav Jain Date: Tue, 19 Aug 2014 11:18:02 -0700 Subject: [PATCH] update to v0.88 --- docs/changelog.rst | 9 +++++++++ docs/contributors.rst | 2 ++ fireworks/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 13 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index ae9c2ec5f..61593c188 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,15 @@ FireWorks Changelog =================== +**v0.88** + +* Add many more unit tests (B. Medasani) +* Fix tracking when FireTask crashes (B. Medasani) +* Clean up some logging +* Don't rerun DEFUSED FWs - they must be reignited +* Allow defuse of COMPLETED FWs +* minor internal fixes + **v0.87** * Fix major bug causing FIZZLED FWs to rerun spontaneously diff --git a/docs/contributors.rst b/docs/contributors.rst index ed77f7873..3862e907f 100644 --- a/docs/contributors.rst +++ b/docs/contributors.rst @@ -18,6 +18,8 @@ William Davidson Richards Waroquiers wrote the SGE queue adapter and provided us Wei Chen was the first test pilot of FireWorks, and contributed greatly to improving the docs and ensuring that FireWorks installation went smoothly for others. In addition, he made many suggestions to improve the usability of the code. +Bharat Medasani added many unit tests. + Felix Brockherde added support for the IBM LoadLeveler queueing system and helped stomp bugs. Brian Foster also stomped a bug. Thanks to Marat Valiev for suggesting Jinja2 as a lightweight templating alternative to Django and Stephen Bailey for helpful discussions. diff --git a/fireworks/__init__.py b/fireworks/__init__.py index e334c2682..4ce070cf2 100644 --- a/fireworks/__init__.py +++ b/fireworks/__init__.py @@ -1,6 +1,6 @@ import os -__version__ = '0.87' +__version__ = '0.88' 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 a623b41f3..35af697f9 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ if __name__ == "__main__": setup( name='FireWorks', - version='0.87', + version='0.88', description='FireWorks workflow software', long_description=open(os.path.join(module_dir, 'README.rst')).read(), url='https://github.com/materialsproject/fireworks',