From 4e2039c3ce61ee603cbdd1d7053b2cc9d1c4c184 Mon Sep 17 00:00:00 2001 From: Sebastian Wagner Date: Thu, 2 Sep 2021 10:17:50 +0200 Subject: [PATCH] REL: 3.0.1 Bugfix release --- CHANGELOG.md | 10 +++------- NEWS.md | 15 +-------------- debian/changelog | 4 ++-- intelmq/version.py | 2 +- 4 files changed, 7 insertions(+), 24 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 672ac2048..c402ff894 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ CHANGELOG ========== -3.0.1 (unreleased) +3.0.1 (2021-09-02) ------------------ ### Configuration @@ -16,10 +16,6 @@ CHANGELOG - `intelmq.lib.pipeline`: Fix handling of `load_balance` parameter (PR#2027 by Mikk Margus Möll). - `intelmq.lib.bot`: Fix handling of parameter `destination_queues` if value is an empty dictionary (PR#2051 by Sebastian Wagner, fixes #2034). -### Development - -### Data Format - ### Bots #### Collectors - `intelmq.bots.collectors.shodan.collector_stream`: Fix access to parameters, the bot wrongly used `self.parameters` (PR#2020 by Mikk Margus Möll). @@ -66,9 +62,9 @@ CHANGELOG - Fix management actions (start/stop/status/reload/restart) for groups (PR#2086 by Sebastian Wagner, fixes #2085). - Do not use hardcoded logging path in `/opt/intelmq`, use the internal default instead (PR#2092 by Sebastian Wagner, fixes #2091). -### Contrib - ### Known issues +See [open bug reports](https://github.com/certtools/intelmq/issues?q=is%3Aissue+is%3Aopen+label%3Abug) for a more detailed list. +- ParserBot: erroneous raw line recovery in error handling (#1850). 3.0.0 (2021-07-02) diff --git a/NEWS.md b/NEWS.md index 0fe74f908..fe11756d4 100644 --- a/NEWS.md +++ b/NEWS.md @@ -9,25 +9,12 @@ NEWS This file lists all changes which have an affect on the administration of IntelMQ and contains steps that you need to be aware off for the upgrade. Please refer to the changelog for a full list of changes. -3.0.1 Maintenance release (unreleased) +3.0.1 Maintenance release (2021-09-02) -------------------------------------- - -### Requirements - -### Tools - ### Bots The malwardomains parser bot was removed. The malwaredomains.com website is offline, therefore the parser can not be used anymore. The `intelmqctl upgrade-config` command warns if you have the feed and the bot in use. -### Data Format - -### Configuration - -### Libraries - -### Postgres databases - 3.0.0 Major release (2021-07-02) -------------------------------- diff --git a/debian/changelog b/debian/changelog index 3028f4f84..4f13e3194 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,8 @@ -intelmq (3.0.1~beta1-1) UNRELEASED; urgency=medium +intelmq (3.0.1-1) stable; urgency=medium * Update to 3.0.1. - -- Sebastian Wagner Fri, 02 Jul 2021 18:46:36 +0200 + -- Sebastian Wagner Thu, 02 Sep 2021 10:17:30 +0200 intelmq (3.0.0-1) stable; urgency=medium diff --git a/intelmq/version.py b/intelmq/version.py index 667c766fb..32ac0f204 100644 --- a/intelmq/version.py +++ b/intelmq/version.py @@ -2,5 +2,5 @@ # # SPDX-License-Identifier: AGPL-3.0-or-later -__version_info__ = (3, 0, 1, 'beta1') +__version_info__ = (3, 0, 1) __version__ = '.'.join(map(str, __version_info__))