Skip to content

Commit

Permalink
Bumped version to 0.11.0. Updated CHANGELOG.
Browse files Browse the repository at this point in the history
  • Loading branch information
coltonbh committed Jul 13, 2024
1 parent 7a88e53 commit c0edaa4
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
5 changes: 4 additions & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [unreleased]

## [0.11.0] - 2024-07-12

### Changed

Updated qcio (0.10.1 -> 0.10.2). `Structure.ids` -> `Structure.identifiers`
Expand Down Expand Up @@ -192,7 +194,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.10.1...HEAD
[unreleased]: https://github.com/mtzgroup/chemcloud-client/compare/0.11.0...HEAD
[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
[0.9.0]: https://github.com/mtzgroup/chemcloud-client/releases/tag/0.9.0
Expand Down
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
[tool.poetry]
name = "chemcloud"
version = "0.10.1"
version = "0.11.0"
description = "Fast, secure, scalable quantum chemistry. A Python client for the the ChemCloud server."
authors = ["Colton Hicks <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/mtzgroup/chemcloud-client"
repository = "https://github.com/mtzgroup/chemcloud-client"
documentation = "https://mtzgroup.github.io/chemcloud-client/"
homepage = "https://mtzgroup.github.io/chemcloud-client/"
classifiers = [
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
Expand Down
5 changes: 3 additions & 2 deletions scripts/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ 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:
CHANGELOG_PATH = "docs/CHANGELOG.md"
with open(CHANGELOG_PATH, "r") as file:
lines = file.readlines()

today = datetime.today().strftime("%Y-%m-%d")
Expand All @@ -48,7 +49,7 @@ def update_changelog(version, repo_url):
lines.insert(i + 1, new_version_link)
break

with open("CHANGELOG.md", "w") as file:
with open(CHANGELOG_PATH, "w") as file:
file.writelines(lines)


Expand Down

0 comments on commit c0edaa4

Please sign in to comment.