From 99198baf602225c58607a76414e78b037f38f227 Mon Sep 17 00:00:00 2001 From: Colton Hicks Date: Mon, 10 Jun 2024 17:55:09 -0700 Subject: [PATCH] Updated CHANGELOG. Bumped version. --- CHANGELOG.md | 5 ++++- pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 85afaaa..c17e551 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [unreleased] +## [0.7.1] - 2024-06-10 + ### Changed - Updated `qcio` `0.6.0` -> `0.6.1` to fix `AdapterError` subclasses not passing the `.program_output` argument correctly to parent classes so `celery` was failing to serialize this attribute on the exception object. @@ -229,7 +231,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - Initial release of core BigQC feature set. Tasks for `compute` (single point energy, gradient, hessian, and properties calculations) and `compute_procedure` (geometry optimization routine). Algorithms for distributed hessian and normal mode analysis with their associated tasks. -[unreleased]: https://github.com/mtzgroup/bigchem/compare/0.7.0...HEAD +[unreleased]: https://github.com/mtzgroup/bigchem/compare/0.7.1...HEAD +[0.7.1]: https://github.com/mtzgroup/bigchem/releases/tag/0.7.1 [0.7.0]: https://github.com/mtzgroup/bigchem/releases/tag/0.7.0 [0.6.9]: https://github.com/mtzgroup/bigchem/releases/tag/0.6.9 [0.6.8]: https://github.com/mtzgroup/bigchem/releases/tag/0.6.8 diff --git a/pyproject.toml b/pyproject.toml index 1421112..3aa0b52 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bigchem" -version = "0.7.0" +version = "0.7.1" description = "A distributed system for scaling and parallelizing quantum chemistry calculations" authors = ["Colton Hicks "] readme = "README.md"