From ee3f7d78fc5cfab35584e36ccee12a56d00ec5da Mon Sep 17 00:00:00 2001 From: Sebastiaan Huber Date: Tue, 26 Sep 2023 21:15:00 +0200 Subject: [PATCH] Release `v2.1.0` --- CHANGELOG.md | 15 +++++++++++++++ src/qe_tools/__init__.py | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..a5b4111 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,15 @@ +# Change log + +## `v2.1.0` - 2023-09-27 + +### Fixes +- Allow for empty strings in `str2val` [[379c8c0]](https://github.com/aiidateam/qe-tools/commit/379c8c0047f21e04e54c206a6279e467a3403dd5) + +### Dependencies +- Add support for Python 3.10 and 3.11 [[5f1f458]](https://github.com/aiidateam/qe-tools/commit/5f1f458230e7c6db4bae5df254c67a7c0a606914) +- Drop support for Python 3.6 and 3.7 [[09d9e7a]](https://github.com/aiidateam/qe-tools/commit/09d9e7a71d8294b5191110118b58a6f6129ac8eb) +- Dependencies: Update `pylint~=2.16.0` [[7a42f10]](https://github.com/aiidateam/qe-tools/commit/7a42f10b58b602f85522266cf49f699106323ed5) + +### Devops +- Update the `setup-python` action for CI and CD [[e77d6dd]](https://github.com/aiidateam/qe-tools/commit/e77d6ddeb6d0f435f6abe3128a62f75c796c9433) +- Update `isort==5.12.0` requirement [[3accb27]](https://github.com/aiidateam/qe-tools/commit/3accb27f7435485b030a9978a7cd2c358e5268bc) diff --git a/src/qe_tools/__init__.py b/src/qe_tools/__init__.py index e838851..fd4940d 100644 --- a/src/qe_tools/__init__.py +++ b/src/qe_tools/__init__.py @@ -3,6 +3,6 @@ from ._constants import DEFAULT as CONSTANTS # isort:skip from . import converters, exceptions, parsers # isort:skip -__version__ = '2.0.0' +__version__ = '2.1.0' __all__ = ('CONSTANTS', 'parsers', 'converters', 'exceptions')