From 57e0f9ec47573dacff472d9d7ef40385f555d3fc Mon Sep 17 00:00:00 2001 From: Simon Meggle Date: Tue, 26 Mar 2024 17:43:43 +0100 Subject: [PATCH 1/3] bump 1.4.4 --- .devcontainer/build.sh | 4 ++-- CHANGELOG.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.devcontainer/build.sh b/.devcontainer/build.sh index 55f55761..7a9e6f5a 100755 --- a/.devcontainer/build.sh +++ b/.devcontainer/build.sh @@ -33,7 +33,7 @@ git config --global --add safe.directory $WORKSPACE # get the current tag (Release) or commit hash (Artifact) #export RMK_VERSION=$(git describe --tags `git rev-list --tags --max-count=1`) # dirty hack - won't spent more time into this... -export RMK_VERSION="1.4.3.1" +export RMK_VERSION="1.4.4" echo "▹ Removing old packages..." rm -f $OMD_ROOT/var/check_mk/packages/* @@ -64,7 +64,7 @@ if [ -n "${GITHUB_WORKSPACE-}" ]; then echo "::set-output name=pkgfile::$NEWFILENAME" # echo "::set-output name=pkgname::${NAME}" # dirty hack - won't spent more time into this... - VERSION="1.4.3.1" + VERSION="1.4.4" # echo "::set-output name=pkgversion::$RMK_VERSION" # echo "::set-output name=cmkmversion::$MVERSION" echo "::set-output name=artifactname::$NEWFILENAME" diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c6b375f..61489a26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## 1.4.3.1 - 2024-03-26 +## Unreleased ### Fixed From 4a70c2f8b5fb6a648996dd34acd7d63037c92cfe Mon Sep 17 00:00:00 2001 From: Simon Meggle Date: Tue, 26 Mar 2024 17:44:12 +0100 Subject: [PATCH 2/3] CHANGELOG: 1.4.4 --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 61489a26..adb1a9f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## 1.4.4 - 2024-03-26 ### Fixed From 042ef233a06a894ef199f37d401c7fa23970c7f9 Mon Sep 17 00:00:00 2001 From: Simon Meggle Date: Tue, 26 Mar 2024 17:44:12 +0100 Subject: [PATCH 3/3] Version bump: 1.4.4 --- agents_plugins/robotmk.py | 2 +- bakery/robotmk.py | 2 +- checks/robotmk.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/agents_plugins/robotmk.py b/agents_plugins/robotmk.py index 14f518ab..277a4db1 100755 --- a/agents_plugins/robotmk.py +++ b/agents_plugins/robotmk.py @@ -34,7 +34,7 @@ local_tz = datetime.utcnow().astimezone().tzinfo -ROBOTMK_VERSION = '1.4.3.1' +ROBOTMK_VERSION = '1.4.4' class RMKConfig: diff --git a/bakery/robotmk.py b/bakery/robotmk.py index 511abeab..47c616d3 100644 --- a/bakery/robotmk.py +++ b/bakery/robotmk.py @@ -5,7 +5,7 @@ # SPDX-License-Identifier: GPL-3.0-or-later # This file is part of the Robotmk project (https://www.robotmk.org) -ROBOTMK_VERSION = '1.4.3.1' +ROBOTMK_VERSION = '1.4.4' from typing import Iterable, TypedDict, List from pathlib import Path diff --git a/checks/robotmk.py b/checks/robotmk.py index bbba639a..e33b450a 100644 --- a/checks/robotmk.py +++ b/checks/robotmk.py @@ -21,7 +21,7 @@ from cmk.base.plugins.agent_based.agent_based_api.v1 import * from cmk.utils.exceptions import MKGeneralException -ROBOTMK_VERSION = '1.4.3.1' +ROBOTMK_VERSION = '1.4.4' DEFAULT_SVC_PREFIX = 'Robot Framework E2E $SUITEID$SPACE-$SPACE' HTML_LOG_DIR = "%s/%s" % (os.environ['OMD_ROOT'], 'var/robotmk')