Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release : v1.1.0 #389

Merged
merged 8 commits into from
Nov 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE/release-prep.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: Release preparation
about: Prepare a new release for this package
title: 'Release : '
labels: 'release-prep'
assignees: ''

---

To create a new release, please do the following:
- [ ] make any changes to the repo needed to accommodate the release
- [ ] check `environment.yml` for any updates needed; create any issues needed to update versions in next release cycle
- [ ] run [`rever`](https://regro.github.io/rever-docs/index.html#rever-releaser-of-versions) to generate the `CHANGELOG` entry from `news` items: `rever <version_number>`
- inspect `CHANGELOG`, adjust as necessary
- [ ] merge this PR into `main`


After you have merged this PR, please also:
- [ ] create a release here in GitHub, including generating detailed release notes
- [ ] in the summary release notes, also link to the `CHANGELOG` entry for this release in the `gufe` docs
- [ ] await automated PR on `conda-forge` [`gufe-feedstock` `meta.yaml`](https://github.com/conda-forge/gufe-feedstock/blob/main/recipe/meta.yaml)
- [ ] review and merge
27 changes: 27 additions & 0 deletions docs/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,30 @@ gufe Change Log
===============

.. current developments

v1.1.0
====================

**Added:**

* use rever to manage changelog
* KeyedChain GufeTokenizable representation was added, allowing
GUFE objects to be deduplicated when serializing GufeTokenizables
(PR #286).
* Added `to_json` and `from_json` convenience methods to GufeTokenizables
to more easily convert to a JSON keyed chain representation (PR #368).

**Changed:**

* Minimum Python version has been raised to v3.10 (PR #340)

**Fixed:**

* Fixed an issue where partial charges were not being read from rdkit
Molecules where atom level properties were not set. This occured
mainly when reading from an SDF file with partial charge tags (PR #312).
* Fixed an issue where ProtocolDAG DAG order & keys were unstable /
non-deterministic between processes under some circumstances (PR #315).
* Fixed a bug where edge annotations were lost when converting a ``LigandNetwork`` to graphml, all JSON codec types are now supported.


23 changes: 0 additions & 23 deletions news/add_rever.rst

This file was deleted.

31 changes: 0 additions & 31 deletions news/backfill_new.rst

This file was deleted.

23 changes: 0 additions & 23 deletions news/graphml_annotations.rst

This file was deleted.

3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,10 @@ readme = "README.md"
authors = [{name = "The OpenFE developers", email = "[email protected]"}]
license = {text = "MIT"}
classifiers = [
"Development Status :: 1 - Planning",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
Expand Down
Loading