From 87fed3d65a2c8110b38ea6a12b0c6e8ddcf7a51b Mon Sep 17 00:00:00 2001 From: Anubhav Jain Date: Thu, 18 Sep 2014 17:32:21 -0700 Subject: [PATCH] update to v0.90 --- docs/changelog.rst | 7 +++++++ docs/contributors.rst | 4 ++-- docs/fireworks.features.rst | 8 ++++++++ fireworks/__init__.py | 2 +- setup.py | 2 +- 5 files changed, 19 insertions(+), 4 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 70e4c8ae5..3333c8807 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,13 @@ FireWorks Changelog =================== +**v0.90** + +* Introduce reporting tools via lpad report (W. Chen) +* Fix bug in locking +* Greatly speed up rlaunch rapidfire by removing artificial sleep +* Use monty CLoader (S.P. Ong) + **v0.89** * Fix small FireTaskMeta issue (G. Petretto w/S.P. Ong) diff --git a/docs/contributors.rst b/docs/contributors.rst index d63806858..b220831a0 100644 --- a/docs/contributors.rst +++ b/docs/contributors.rst @@ -8,6 +8,8 @@ Shyue Ping Ong contributed to several aspects and features of FireWorks, and was Michael Kocher and Dan Gunter initiated the architecture of a central MongoDB database with multiple workers that queued 'placeholder' scripts responsible for checking out jobs. Some of Michael's code was refashioned for the QueueLauncher and the PBS QueueAdapter. +Wei Chen added the reporting package. He 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. + Xiaohui Qu wrote the multi job launcher, with help from Anubhav Jain and advice from Dan Gunter. David Waroquiers wrote the SLURM queue adapter, helped write the FileTransferTask, and provided useful feedback. @@ -16,8 +18,6 @@ Morgan Hargrove wrote the "base site" web frontend as part of a summer project a William Davidson Richards wrote the SGE queue adapter and provided useful feedback. -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. diff --git a/docs/fireworks.features.rst b/docs/fireworks.features.rst index 9751dcb47..38bd9b700 100644 --- a/docs/fireworks.features.rst +++ b/docs/fireworks.features.rst @@ -33,3 +33,11 @@ features Package :undoc-members: :show-inheritance: +:mod:`stats` Module +------------------- + +.. automodule:: fireworks.features.stats + :members: + :undoc-members: + :show-inheritance: + diff --git a/fireworks/__init__.py b/fireworks/__init__.py index d659b3f5b..3cd17d92b 100644 --- a/fireworks/__init__.py +++ b/fireworks/__init__.py @@ -1,6 +1,6 @@ import os -__version__ = '0.89' +__version__ = '0.90' 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 812a3748e..327568ff5 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ if __name__ == "__main__": setup( name='FireWorks', - version='0.89', + version='0.90', description='FireWorks workflow software', long_description=open(os.path.join(module_dir, 'README.rst')).read(), url='https://github.com/materialsproject/fireworks',