Skip to content

Commit f5d304f

Browse files
committed
update to v1.1.3
1 parent a388d3d commit f5d304f

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

docs/changelog.rst

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

5+
**v1.1.3**
6+
7+
* fix bug that caused FWorker queries to chain on themselves
8+
* fix issue of Python runners that override sys.stdout, causing problems in ScriptTask
9+
* fix unit tests
10+
511
**v1.1.2**
612

713
* new special keyword _add_launchpad_and_fw_id allows accessing the LaunchPad in the FireTask

fireworks/__init__.py

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

3-
__version__ = '1.1.2'
3+
__version__ = '1.1.3'
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.

fw_tutorials/introduction/howdy.txt

-1
This file was deleted.

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.1.2',
19+
version='1.1.3',
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)