From a74407e458cf34d764341a64c0f3f9142687e1cf Mon Sep 17 00:00:00 2001 From: Sebastiaan Huber Date: Mon, 13 Nov 2023 08:18:00 +0100 Subject: [PATCH] Release 0.7.8 --- CHANGELOG.md | 7 +++++++ kiwipy/version.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c5ac1b6..7ae31fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## v0.7.8 2023-11-13 + +- Dependencies: Add support for Python 3.12 [[7aef66f]](https://github.com/aiidateam/kiwipy/commit/7aef66f69e34386aff78a9b9ac988fc377ca49e5) +- Dependencies: Drop support Python 3.7 [[08e77e9]](https://github.com/aiidateam/kiwipy/commit/08e77e96e48de92391cea3c4c0ef7fadb0e0a23e) +- Dependencies: Update `pylint==2.17.7` [[5fafe43]](https://github.com/aiidateam/kiwipy/commit/5fafe43c8dc4c5a6f6a3d2ffb6383db2fd97a246) +- Devops: Fix the ReadTheDocs build [[59cd6f4]](https://github.com/aiidateam/kiwipy/commit/59cd6f40974e764db03bf127f34adc9f5ec1a4a4) + ## v0.7.7 2022-08-05 - Dependencies: Add support for Python 3.10 and 3.11 [[#130]](https://github.com/aiidateam/kiwipy/pull/130) diff --git a/kiwipy/version.py b/kiwipy/version.py index 36c73bb..a748049 100644 --- a/kiwipy/version.py +++ b/kiwipy/version.py @@ -1,4 +1,4 @@ # -*- coding: utf-8 -*- -__version__ = '0.7.7' +__version__ = '0.7.8' __all__ = ('__version__',)