Skip to content

Commit

Permalink
REL: 3.0.0 major release
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Wagner committed Jul 2, 2021
1 parent 3cabb4e commit 14ac479
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,6 @@ Update allowed classification fields to version 1.3 (2021-05-18) (fixes #1409, #
### Known issues
- ParserBot: erroneous raw line recovery in error handling (#1850).
- ruamel.yaml loader and dumper: human readability bug / support for comments (#2003).
- load_configuration does not support JSON files with tab whitespace because of ruamel loader (#1999).


2.3.3 (2021-05-31)
Expand Down
4 changes: 1 addition & 3 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ 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.0 Major release (unreleased)
3.0.0 Major release (2021-07-02)
--------------------------------

### Requirements
Expand Down Expand Up @@ -105,8 +105,6 @@ The `runtime.conf` file was replaced by a `runtime.yaml` file. IntelMQ moves the
- RT collector: compatibility with the deprecated parameter `unzip_attachment` (removed in 2.1.0) was removed.


### Libraries

### Postgres databases
The following statements optionally update existing data for the harmonization classification changes:
```SQL
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
intelmq (3.0.0-1) stable; urgency=medium

* Update to version 3.0.0.

-- Sebastian Wagner <wagner@cert.at> Fri, 02 Jul 2021 17:35:56 +0200

intelmq (3.0.0~rc1-1) stable; urgency=low

* Update to 3.0.0 Release candidate 1.
Expand Down
4 changes: 2 additions & 2 deletions intelmq/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SPDX-FileCopyrightText: 2016 Sebastian Wagner
# SPDX-FileCopyrightText: 2016-2021 Sebastian Wagner
#
# SPDX-License-Identifier: AGPL-3.0-or-later

__version_info__ = (3, 0, 0, 'rc', 1)
__version_info__ = (3, 0, 0)
__version__ = '.'.join(map(str, __version_info__))

0 comments on commit 14ac479

Please sign in to comment.