Skip to content

Commit 9c0533c

Browse files
author
Sebastian Wagner
committed
MAINT: start 2.3.1 development
1 parent 1d9ef49 commit 9c0533c

File tree

5 files changed

+57
-1
lines changed

5 files changed

+57
-1
lines changed

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,39 @@
11
CHANGELOG
22
==========
33

4+
2.3.1 (unreleased)
5+
------------------
6+
7+
### Configuration
8+
9+
### Core
10+
11+
### Development
12+
13+
### Harmonization
14+
15+
### Bots
16+
#### Collectors
17+
18+
#### Parsers
19+
20+
#### Experts
21+
22+
#### Outputs
23+
24+
### Documentation
25+
26+
### Packaging
27+
28+
### Tests
29+
30+
### Tools
31+
32+
### Contrib
33+
34+
### Known issues
35+
36+
437
2.3.0 (2021-03-04)
538
------------------
639

NEWS.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,22 @@ NEWS
44
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.
55
Please refer to the changelog for a full list of changes.
66

7+
2.3.1 Bugfix release (unreleased)
8+
---------------------------------
9+
10+
### Requirements
11+
12+
### Tools
13+
14+
### Harmonization
15+
16+
### Configuration
17+
18+
### Libraries
19+
20+
### Postgres databases
21+
22+
723
2.3.0 Feature release (2021-03-04)
824
----------------------------------
925

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
intelmq (2.3.1~alpha1-1) UNRELEASED; urgency=medium
2+
3+
* Start 2.3.1 development.
4+
5+
-- Sebastian Wagner <[email protected]> Mon, 08 Mar 2021 20:36:58 +0100
6+
17
intelmq (2.3.0-1) unstable; urgency=medium
28

39
* Update to 2.3.0 stable version.

intelmq/lib/upgrades.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -589,6 +589,7 @@ def v230_feed_changes(defaults, runtime, harmonization, dry_run):
589589
((2, 2, 2), (v222_feed_changes, )),
590590
((2, 2, 3), ()),
591591
((2, 3, 0), (v230_csv_parser_parameter_fix, v230_feed_changes, v230_deprecations,)),
592+
((2, 3, 1), ()),
592593
])
593594

594595
ALWAYS = (harmonization, )

intelmq/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version_info__ = (2, 3, 0)
1+
__version_info__ = (2, 3, 1, 'alpha1')
22
__version__ = '.'.join(map(str, __version_info__))

0 commit comments

Comments
 (0)