From 17805961b7a12f7f124cd1e1295c64784eb2ac11 Mon Sep 17 00:00:00 2001 From: Sebastian Wagner Date: Thu, 25 Mar 2021 11:14:34 +0100 Subject: [PATCH] REL: Release 2.3.1 --- CHANGELOG.rst | 6 ++++++ debian/changelog | 6 ++++++ intelmq_api/version.py | 2 +- 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a58f642..cfdfe4f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,12 @@ CHANGELOG ========= +2.3.1 (2021-03-25) +------------------ + +Session database permission errors: Catch the exception in the code and add a hint to check the permissions of both the file and the directory (PR#25 by Birger Schacht, fixes #23). + + 2.3.0 (2021-03-04) ------------------ diff --git a/debian/changelog b/debian/changelog index 6f1c5ca..1d66cc1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +intelmq-api (2.3.1-1) unstable; urgency=medium + + * Uodate to 2.3.1. + + -- Sebastian Wagner Thu, 25 Mar 2021 11:13:33 +0100 + intelmq-api (2.3.0-1) unstable; urgency=medium * Initial release. diff --git a/intelmq_api/version.py b/intelmq_api/version.py index 0486374..5401ca3 100644 --- a/intelmq_api/version.py +++ b/intelmq_api/version.py @@ -3,5 +3,5 @@ SPDX-FileCopyrightText: 2020 Birger Schacht SPDX-License-Identifier: AGPL-3.0-or-later """ -__version_info__ = (2, 3, 0) +__version_info__ = (2, 3, 1) __version__ = '.'.join(map(str, __version_info__))