From 6a2598bab526c0dd06cb4a56b7d18b618d0a182b Mon Sep 17 00:00:00 2001 From: Marnik Bercx Date: Thu, 21 Nov 2024 11:59:56 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20Release=20`v2.3.0`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 16 ++++++++++++++++ src/qe_tools/__init__.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ceac5c9..28bea1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +## `v2.3.0` - 2024-11-21 + +### ✨ New features + +* ✨ Add conversion constants for a.u. to GPa [[cf00438](https://github.com/aiidateam/qe-tools/commit/cf0043865a7d3d64a9edb8aa11ac2e70c6c423ef)] + +### 👌 Improvements + +* 👌 `CHANGELOG.md`: remove superfluous title [[11f7a92](https://github.com/aiidateam/qe-tools/commit/11f7a9227ec5d4873375147a43fb107ad095a5e2)] + +### 🔧 Maintenance + +* 🔧 Add `update_changelog.py` script [[5d7f7f1](https://github.com/aiidateam/qe-tools/commit/5d7f7f11754434cba2565e9bb3c1dc0622822498)] +* 🔧 Devops: Switch to `ruff` for linting/formatting [[f447512](https://github.com/aiidateam/qe-tools/commit/f4475124ac61684d090a3d7b70c8520cc376dff2)] + + ## `v2.2.0` - 2024-02-02 ### Features diff --git a/src/qe_tools/__init__.py b/src/qe_tools/__init__.py index c51ef3b..8c67b44 100644 --- a/src/qe_tools/__init__.py +++ b/src/qe_tools/__init__.py @@ -4,6 +4,6 @@ from ._constants import DEFAULT as CONSTANTS # isort:skip from . import converters, exceptions, parsers, extractors # isort:skip -__version__ = '2.2.0' +__version__ = '2.3.0' __all__ = ('CONSTANTS', 'parsers', 'converters', 'exceptions', 'extractors')