Skip to content

Commit b925717

Browse files
committed
update to v1.08
1 parent 61cb655 commit b925717

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

docs/changelog.rst

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
FireWorks Changelog
33
===================
44

5+
**v1.08**
6+
7+
* allow PyTask to return FWAction
8+
* allow FWConfig to set web host and port for GUI
9+
* make detect_lostruns more robust to failure halfway through
10+
* minor fixes and typo corrections (jakirkham)
11+
512
**v1.07**
613

714
* fix bug in offline mode

docs/contributors.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ William Davidson Richards wrote the SGE queue adapter and provided useful feedba
2626

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

29-
Brian Foster, kpoman, jakirkham, and Ganesh Panchapakesan helped stomp bugs and provide improvements.
29+
Brian Foster, kpoman, jakirkham, zulissi, and Ganesh Panchapakesan helped stomp bugs and provide improvements.
3030

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

fireworks/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22

3-
__version__ = '1.07'
3+
__version__ = '1.08'
44
FW_INSTALL_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
55

66
# These imports allow a much simpler import of core Fireworks functionality.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
if __name__ == "__main__":
1717
setup(
1818
name='FireWorks',
19-
version='1.07',
19+
version='1.08',
2020
description='FireWorks workflow software',
2121
long_description=open(os.path.join(module_dir, 'README.rst')).read(),
2222
url='https://github.com/materialsproject/fireworks',

0 commit comments

Comments
 (0)