Skip to content

Commit

Permalink
update to v0.90
Browse files Browse the repository at this point in the history
  • Loading branch information
computron committed Sep 19, 2014
1 parent 7dd80af commit 87fed3d
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 4 deletions.
7 changes: 7 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions docs/contributors.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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.
Expand Down
8 changes: 8 additions & 0 deletions docs/fireworks.features.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,11 @@ features Package
:undoc-members:
:show-inheritance:

:mod:`stats` Module
-------------------

.. automodule:: fireworks.features.stats
:members:
:undoc-members:
:show-inheritance:

2 changes: 1 addition & 1 deletion fireworks/__init__.py
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 87fed3d

Please sign in to comment.