Skip to content

Commit 35b90db

Browse files
committed
DEV: Prepare new 3.3.2 version
1 parent ceb678c commit 35b90db

File tree

5 files changed

+58
-2
lines changed

5 files changed

+58
-2
lines changed

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,39 @@
66
# CHANGELOG
77

88

9+
3.3.2 (unreleased)
10+
------------------
11+
12+
### Configuration
13+
14+
### Core
15+
16+
### Development
17+
18+
### Data Format
19+
20+
### Bots
21+
#### Collectors
22+
23+
#### Parsers
24+
25+
#### Experts
26+
27+
#### Outputs
28+
29+
### Documentation
30+
31+
### Packaging
32+
33+
### Tests
34+
35+
### Tools
36+
37+
### Contrib
38+
39+
### Known issues
40+
41+
942
3.3.1 (2024-09-03)
1043
------------------
1144

NEWS.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!-- comment
2-
SPDX-FileCopyrightText: 2015-2023 Sebastian Wagner
2+
SPDX-FileCopyrightText: 2015-2024 Sebastian Wagner
33
SPDX-License-Identifier: AGPL-3.0-or-later
44
-->
55

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

1212

13+
3.3.2 Bugfix release (unreleased)
14+
---------------------------------
15+
16+
### Requirements
17+
18+
### Tools
19+
20+
### Data Format
21+
22+
### Configuration
23+
24+
### Libraries
25+
26+
### Postgres databases
27+
28+
1329
3.3.1 Bugfix release (2024-09-03)
1430
---------------------------------
1531

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
intelmq (3.3.2~alpha1-1) UNRELEASED; urgency=medium
2+
3+
* Prepare 3.3.2 release
4+
5+
-- Sebastian Wagner <sebix@sebix.at> Mon, 16 Sep 2024 17:53:59 +0200
6+
17
intelmq (3.3.1-1) stable; urgency=medium
28

39
* 3.3.1 Bugfix release

intelmq/lib/upgrades.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -981,6 +981,7 @@ def v322_removed_feeds_and_bots(configuration, harmonization, dry_run, **kwargs)
981981
((3, 2, 2), (v322_url_replacement, v322_removed_feeds_and_bots)),
982982
((3, 3, 0), ()),
983983
((3, 3, 1), ()),
984+
((3, 3, 2), ()),
984985
])
985986

986987
ALWAYS = (harmonization,)

intelmq/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
#
33
# SPDX-License-Identifier: AGPL-3.0-or-later
44

5-
__version_info__ = (3, 3, 1,)
5+
__version_info__ = (3, 3, 2, 'alpha1')
66
__version__ = '.'.join(map(str, __version_info__))

0 commit comments

Comments
 (0)