Skip to content

Commit ce37509

Browse files
committed
update to v1.1.6
1 parent 6315383 commit ce37509

6 files changed

+45
-3
lines changed

docs/changelog.rst

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

5+
**v1.1.6**
6+
7+
* add beta of ``lpad introspect`` (no docs yet)
8+
* fix ``-q`` option of ``lpad report`` (D. Winston)
9+
510
**v1.1.5**
611

712
.. caution:: FWS now decodes monty-style objects, e.g. pymatgen. If you encounter decoding issues, set DECODE_MONTY=False in your fw_config.

docs/contributors.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Zach Ulissi added support for IBM LoadSharing facility.
3030

3131
William Scullin added ALCF Cobalt support and helped stomp bugs.
3232

33-
Brian Foster, kpoman, jakirkham, Ganesh Panchapakesan, and Patrick Huck helped stomp bugs and provide improvements.
33+
Brian Foster, kpoman, jakirkham, Ganesh Panchapakesan, Patrick Huck, and Donny Winston helped stomp bugs and provide improvements.
3434

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

docs/fireworks.features.rst

+15
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
fireworks.features package
22
==========================
33

4+
Subpackages
5+
-----------
6+
7+
.. toctree::
8+
9+
fireworks.features.tests
10+
411
Submodules
512
----------
613

@@ -28,6 +35,14 @@ fireworks.features.fw_report module
2835
:undoc-members:
2936
:show-inheritance:
3037

38+
fireworks.features.introspect module
39+
------------------------------------
40+
41+
.. automodule:: fireworks.features.introspect
42+
:members:
43+
:undoc-members:
44+
:show-inheritance:
45+
3146
fireworks.features.multi_launcher module
3247
----------------------------------------
3348

docs/fireworks.features.tests.rst

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
fireworks.features.tests package
2+
================================
3+
4+
Submodules
5+
----------
6+
7+
fireworks.features.tests.test_introspect module
8+
-----------------------------------------------
9+
10+
.. automodule:: fireworks.features.tests.test_introspect
11+
:members:
12+
:undoc-members:
13+
:show-inheritance:
14+
15+
16+
Module contents
17+
---------------
18+
19+
.. automodule:: fireworks.features.tests
20+
:members:
21+
:undoc-members:
22+
:show-inheritance:

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.5'
3+
__version__ = '1.1.6'
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.1.5',
19+
version='1.1.6',
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)