Skip to content

Commit

Permalink
REL: 3.3.0 stable release
Browse files Browse the repository at this point in the history
* update version just as well when updating the main intelmq version to
3.3.0. Just stay consistent with the version of the core.

* Bump version to be in sync with the main intelmq release

* fix timestamp formatting

---------

Co-authored-by: aaronkaplan <[email protected]>
  • Loading branch information
sebix and aaronkaplan authored Mar 1, 2024
1 parent 13db72b commit 2117b60
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ SPDX-License-Identifier: AGPL-3.0-or-later
CHANGELOG
=========

3.3.0 (2024-03-01)
------------------

Bump version to be in sync with the main intelmq release

3.2.0 (2023-07-19)
------------------

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-manager (3.3.0-1) stable; urgency=medium

* Update to 3.3.0: Bump version to be in sync with the main intelmq release

-- Aaron Kaplan <[email protected]> Fr, 01 Mar 2024 14:19:00 +0100

intelmq-manager (3.2.0-1) stable; urgency=medium

* Update to 3.2.0
Expand Down
2 changes: 1 addition & 1 deletion intelmq_manager/static/js/about.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function get_versions() {
.done(function (data) {
intelmq_version_element.innerHTML = data.intelmq;
intelmq_api_version_element.innerHTML = data['intelmq-api'];
intelmq_manager_version_element.innerHTML = '3.2.0';
intelmq_manager_version_element.innerHTML = '3.3.0';
})
.fail(function (jqxhr, textStatus, error) {
let err = `${textStatus}, ${error}`;
Expand Down
2 changes: 1 addition & 1 deletion intelmq_manager/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
SPDX-FileCopyrightText: 2020-2021 Intelmq Team <[email protected]>, 2022-2023 Intevation GmbH
SPDX-License-Identifier: AGPL-3.0-or-later
"""
__version_info__ = (3, 2, 0)
__version_info__ = (3, 3, 0)
__version__ = '.'.join(map(str, __version_info__))

0 comments on commit 2117b60

Please sign in to comment.