Skip to content

Commit

Permalink
Merge branch 'v1/dev' into v1/stable
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Meggle committed Mar 26, 2024
2 parents d221cdc + 042ef23 commit 956b200
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .devcontainer/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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/*
Expand Down Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
## 1.4.4 - 2024-03-26

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion agents_plugins/robotmk.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

local_tz = datetime.utcnow().astimezone().tzinfo

ROBOTMK_VERSION = '1.4.3.1'
ROBOTMK_VERSION = '1.4.4'


class RMKConfig:
Expand Down
2 changes: 1 addition & 1 deletion bakery/robotmk.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion checks/robotmk.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')

Expand Down

0 comments on commit 956b200

Please sign in to comment.