Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DEV: Prepare new 3.3.2 version #2527

Merged
merged 1 commit into from
Sep 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,39 @@
# CHANGELOG


3.3.2 (unreleased)
------------------

### Configuration

### Core

### Development

### Data Format

### Bots
#### Collectors

#### Parsers

#### Experts

#### Outputs

### Documentation

### Packaging

### Tests

### Tools

### Contrib

### Known issues


3.3.1 (2024-09-03)
------------------

Expand Down
18 changes: 17 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!-- comment
SPDX-FileCopyrightText: 2015-2023 Sebastian Wagner
SPDX-FileCopyrightText: 2015-2024 Sebastian Wagner
SPDX-License-Identifier: AGPL-3.0-or-later
-->

Expand All @@ -10,6 +10,22 @@ This file lists all changes which have an affect on the administration of IntelM
Please refer to the change log for a full list of changes.


3.3.2 Bugfix release (unreleased)
---------------------------------

### Requirements

### Tools

### Data Format

### Configuration

### Libraries

### Postgres databases


3.3.1 Bugfix release (2024-09-03)
---------------------------------

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.3.2~alpha1-1) UNRELEASED; urgency=medium

* Prepare 3.3.2 release

-- Sebastian Wagner <[email protected]> Mon, 16 Sep 2024 17:53:59 +0200

intelmq (3.3.1-1) stable; urgency=medium

* 3.3.1 Bugfix release
Expand Down
1 change: 1 addition & 0 deletions intelmq/lib/upgrades.py
Original file line number Diff line number Diff line change
Expand Up @@ -981,6 +981,7 @@ def v322_removed_feeds_and_bots(configuration, harmonization, dry_run, **kwargs)
((3, 2, 2), (v322_url_replacement, v322_removed_feeds_and_bots)),
((3, 3, 0), ()),
((3, 3, 1), ()),
((3, 3, 2), ()),
])

ALWAYS = (harmonization,)
2 changes: 1 addition & 1 deletion intelmq/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
#
# SPDX-License-Identifier: AGPL-3.0-or-later

__version_info__ = (3, 3, 1,)
__version_info__ = (3, 3, 2, 'alpha1')
__version__ = '.'.join(map(str, __version_info__))
Loading