Skip to content

Commit 015f34e

Browse files
authored
Merge pull request #940 from OpenFreeEnergy/update-zenodo
Update CITATION.cff
2 parents f4475bf + 1672985 commit 015f34e

13 files changed

+49
-131
lines changed

.github/workflows/ci.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ jobs:
7373
- name: "Setup Micromamba"
7474
uses: mamba-org/setup-micromamba@v1
7575
with:
76+
micromamba-version: '1.5.6-0'
7677
micromamba-binary-path: ~/.local/bin/micromamba
7778
environment-file: environment.yml
7879
environment-name: openfe_env

.github/workflows/conda_cron.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ jobs:
3434
- name: Setup Micromamba
3535
uses: mamba-org/setup-micromamba@v1
3636
with:
37+
micromamba-version: '1.5.6-0'
3738
micromamba-binary-path: ~/.local/bin/micromamba
3839
environment-name: openfe
3940
create-args: >-

.github/workflows/gpu-runner.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ jobs:
5555
- name: "Setup Micromamba"
5656
uses: mamba-org/setup-micromamba@v1
5757
with:
58+
micromamba-version: '1.5.6-0'
5859
environment-file: environment.yml
5960
environment-name: openfe_env
6061
condarc: |

.github/workflows/installer.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ jobs:
3737
- name: Install constructor environment with Micromamba
3838
uses: mamba-org/setup-micromamba@v1
3939
with:
40+
micromamba-version: '1.5.6-0'
4041
micromamba-binary-path: ~/.local/bin/micromamba
4142
environment-name: installer
4243
create-args: >-

.github/workflows/mypy.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
- name: "Setup Micromamba"
2929
uses: mamba-org/setup-micromamba@v1
3030
with:
31+
micromamba-version: '1.5.6-0'
3132
environment-file: environment.yml
3233
environment-name: openfe_env
3334
cache-environment: true

.github/workflows/package-tests.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
- name: "Setup Micromamba"
2323
uses: mamba-org/setup-micromamba@v1
2424
with:
25+
micromamba-version: '1.5.6-0'
2526
environment-file: environment.yml
2627
environment-name: openfe_env
2728
cache-environment: true

CITATION.cff

+8-2
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,15 @@ authors:
2828
- given-names: "David"
2929
family-names: "Dotson"
3030
orcid: "https://orcid.org/0000-0001-5879-2942"
31+
- given-names: Joshua T.
32+
family-names: Horton
33+
orcid: 'https://orcid.org/0000-0001-8694-7200'
34+
- given-names: Matthew
35+
family-names: Thompson
36+
orcid: 'https://orcid.org/0000-0002-1460-3983'
3137
title: "The Open Free Energy library"
32-
version: 1.0
33-
date-released: 2024-04-19
38+
version: 1.1.0
39+
date-released: 2024-09-25
3440
url: "https://openfree.energy/"
3541
repository-code: "https://github.com/openfreeEnergy/openfe"
3642
doi: 10.5281/zenodo.8344247

docs/CHANGELOG.rst

+35
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,41 @@ Changelog
44

55
.. current developments
66
7+
v1.1.0
8+
====================
9+
10+
**Added:**
11+
12+
* Extended system solvation tooling, including support for; non-cubic boxes,
13+
explicitly defining the number of waters added, the box vectors, and box size
14+
as supported by `Modeller.addSolvent` in OpenMM 8.0 and above.
15+
16+
**Changed:**
17+
18+
* Improved documentation of the OpenMMSolvationSettings.
19+
* The `PersesAtomMapper` now uses openff.units inline with the rest of the package.
20+
* Structural analysis data is no longer written to `structural_analysis.json`
21+
but rather a 32bit numpy compressed file named `structural_analysis.npz`
22+
(PR #937).
23+
* Structural analysis array data is no longer directly returned in the
24+
RelativeHybridTopologyProtocol result dictionary. Instead it should
25+
be accessed from the serialized NPZ file `structural_analysis.npz`.
26+
The `structural_analysis` key now contains a path to the NPZ file,
27+
if the structural analysis did not fail (the `structural_analysis_error`
28+
key will instead be present on failure) (PR #937).
29+
* Add duecredit citations for pymbar when calling
30+
`openfe.protocols.openmm_utils.multistate_analysis`.
31+
32+
**Fixed:**
33+
34+
* 2D RMSD plotting now allows for fewer than 5 states (PR #896).
35+
* 2D RMSD plotting no longer draws empty axes when
36+
the number of states - 1 is not divisible by 4 (PR #896).
37+
* The RelativeHybridTopologyProtocol result unit is now much smaller,
38+
due to the removal of structural analysis data (PR #937).
39+
40+
41+
742
v1.0.1
843
====================
944

news/noncubic_solvent.rst

-25
This file was deleted.

news/pr_896.rst

-25
This file was deleted.

news/pr_930.rst

-23
This file was deleted.

news/pr_937.rst

-32
This file was deleted.

news/pymbar_duecredit.rst

-24
This file was deleted.

0 commit comments

Comments
 (0)