diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index a4acd8a..f2f794d 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [unreleased] +## [0.11.1] - 2024-07-19 + ### Changed - Updated to [qcio 0.11.](https://github.com/coltonbh/qcio/blob/master/CHANGELOG.md#0110---2024-07-19). @@ -198,7 +200,8 @@ Updated qcio (0.10.1 -> 0.10.2). `Structure.ids` -> `Structure.identifiers` - `_RequestsClient` class that handles all network requests to TeraChem Cloud server - `FutureResults` object that is created from a `task_id` and can be used to retrieve a result once finished. -[unreleased]: https://github.com/mtzgroup/chemcloud-client/compare/0.11.0...HEAD +[unreleased]: https://github.com/mtzgroup/chemcloud-client/compare/0.11.1...HEAD +[0.11.1]: https://github.com/mtzgroup/chemcloud-client/releases/tag/0.11.1 [0.11.0]: https://github.com/mtzgroup/chemcloud-client/releases/tag/0.11.0 [0.10.1]: https://github.com/mtzgroup/chemcloud-client/releases/tag/0.10.1 [0.10.0]: https://github.com/mtzgroup/chemcloud-client/releases/tag/0.10.0 diff --git a/pyproject.toml b/pyproject.toml index b74cb9b..cf51bc4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "chemcloud" -version = "0.11.0" +version = "0.11.1" description = "Fast, secure, scalable quantum chemistry. A Python client for the the ChemCloud server." authors = ["Colton Hicks "] license = "MIT" diff --git a/scripts/release.py b/scripts/release.py index 695a27f..9c6f638 100644 --- a/scripts/release.py +++ b/scripts/release.py @@ -25,7 +25,7 @@ def update_version_with_poetry(version): def update_changelog(version, repo_url): """Update the CHANGELOG.md file with the new version and today's date.""" print("Updating CHANGELOG.md...") - with open("CHANGELOG.md", "r") as file: + with open("docs/CHANGELOG.md", "r") as file: lines = file.readlines() today = datetime.today().strftime("%Y-%m-%d") @@ -48,7 +48,7 @@ def update_changelog(version, repo_url): lines.insert(i + 1, new_version_link) break - with open("CHANGELOG.md", "w") as file: + with open("docs/CHANGELOG.md", "w") as file: file.writelines(lines) @@ -90,7 +90,7 @@ def main(): version = sys.argv[1] original_pyproject = Path("pyproject.toml").read_text() - original_changelog = Path("CHANGELOG.md").read_text() + original_changelog = Path("docs/CHANGELOG.md").read_text() repo_url = get_repo_url() update_version_with_poetry(version)