Skip to content

Commit

Permalink
update version just as well when updating the main intelmq version to
Browse files Browse the repository at this point in the history
3.3.0. Just stay consistent with the version of the core.
  • Loading branch information
aaronkaplan committed Feb 29, 2024
1 parent 1367ea8 commit 24ec203
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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 24ec203

Please sign in to comment.