diff --git a/docs/changelog.rst b/docs/changelog.rst index 166bebc5e..9d3c99a5c 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,16 @@ FireWorks Changelog =================== +**v1.1.2** + +* new special keyword _add_launchpad_and_fw_id allows accessing the LaunchPad in the FireTask +* new special keyword _pass_job_info makes it easy to pass run locations between jobs in a Workflow +* new special keyword _preserve_fworker makes it easy to run multiple jobs on the same FWorker +* default __repr__ for FWSerializable +* fix Hopper qstat bug +* Cobalt queue fixes (W. Scullin) +* SLURM template update (P. Huck) + **v1.1.1** * greatly improve webgui: stability, clarity, functionality, and speed diff --git a/fireworks/__init__.py b/fireworks/__init__.py index f4d3f05a7..ab5b252a9 100644 --- a/fireworks/__init__.py +++ b/fireworks/__init__.py @@ -1,6 +1,6 @@ import os -__version__ = '1.1.1' +__version__ = '1.1.2' FW_INSTALL_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) # These imports allow a much simpler import of core Fireworks functionality. diff --git a/setup.py b/setup.py index 5436ecb39..a7f460341 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ if __name__ == "__main__": setup( name='FireWorks', - version='1.1.1', + version='1.1.2', description='FireWorks workflow software', long_description=open(os.path.join(module_dir, 'README.rst')).read(), url='https://github.com/materialsproject/fireworks',