Skip to content

Commit

Permalink
update to v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
computron committed Aug 14, 2015
1 parent 058e48b commit 63db08b
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
11 changes: 11 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,28 @@
FireWorks Changelog
===================

**v1.1.0**

* fix bug in created_on for workflows (thanks to W. Zhao for pointing it out)
* fix bug in FWorker query for certain situations (P. Huck)
* Updates for Cobalt, Py3 (W. Scullin)
* Updates for IBM Loadsharing facility (Z. Ulissi)

**v1.08**
.. note:: v1.08 is not in pip due to version number issues, use Github to get this legacy version

* allow PyTask to return FWAction
* allow FWConfig to set web host and port for GUI
* make detect_lostruns more robust to failure halfway through
* minor fixes and typo corrections (jakirkham)

**v1.07**
.. note:: v1.07 is not in pip due to version number issues, use Github to get this legacy version

* fix bug in offline mode

**v1.06**
.. note:: v1.06 is not in pip due to version number issues, use Github to get this legacy version
.. caution:: Offline mode unusable in this release

* Pymongo3 compatibility
Expand All @@ -22,6 +32,7 @@ FireWorks Changelog
* unit test offline mode

**v1.05**
.. note:: v1.05 is not in pip due to version number issues, use Github to get this legacy version

.. caution:: The default behavior for PyTask handling of kwargs has changed. To maintain legacy behavior, update the "auto_kwargs" option to True in your FireTasks.
.. caution:: Offline mode unusable in this release
Expand Down
6 changes: 5 additions & 1 deletion docs/contributors.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ William Davidson Richards wrote the SGE queue adapter and provided useful feedba

Felix Brockherde added support for the IBM LoadLeveler queueing system and helped stomp bugs.

Brian Foster, kpoman, jakirkham, zulissi, and Ganesh Panchapakesan helped stomp bugs and provide improvements.
Zach Ulissi added support for IBM LoadSharing facility.

William Scullin added ALCF Cobalt support and helped stomp bugs.

Brian Foster, kpoman, jakirkham, Ganesh Panchapakesan helped stomp bugs and provide improvements.

Thanks to Marat Valiev for suggesting Jinja2 as a lightweight templating alternative to Django and Stephen Bailey for helpful discussions.

Expand Down
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__ = '1.08'
__version__ = '1.1.0'
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='1.08',
version='1.1.0',
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 63db08b

Please sign in to comment.