diff --git a/CHANGELOG.md b/CHANGELOG.md index 68a0d63..b44e523 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.23.1] - 2024-09-25 + ### Changed - Added info text for SkipDisk scenarios - error-report delete: allow 5d or 3d10h strings to be used for --to and --since diff --git a/Dockerfile b/Dockerfile index 77641c9..daf1c2b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ ARG BUILDER=registry.access.redhat.com/ubi8/ubi FROM $BUILDER as builder -ENV LINSTOR_CLI_VERSION 1.23.0 -ENV PYTHON_LINSTOR_VERSION 1.23.0 +ENV LINSTOR_CLI_VERSION 1.23.1 +ENV PYTHON_LINSTOR_VERSION 1.23.1 ENV LINSTOR_CLI_PKGNAME linstor-client ENV LINSTOR_CLI_TGZ ${LINSTOR_CLI_PKGNAME}-${LINSTOR_CLI_VERSION}.tar.gz @@ -42,7 +42,7 @@ FROM registry.access.redhat.com/ubi8/ubi MAINTAINER Roland Kammerer # ENV can not be shared between builder and "main" -ENV LINSTOR_CLI_VERSION 1.23.0 +ENV LINSTOR_CLI_VERSION 1.23.1 ARG release=1 LABEL name="linstor-client" \ diff --git a/debian/changelog b/debian/changelog index 9fc4ae7..8bf8d8e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,14 @@ +linstor-client (1.23.1-1) experimental; urgency=medium + + [ Rene Peinthor ] + * parse_time_str: better wrong input handling + * error-report delete: allow 5d or 3d10h strings to be used for --to and [...] + + [ Gabor Hernadi ] + * SkipDisk: Add info text when SkipDisk is enabled + + -- Rene Peinthor Wed, 25 Sep 2024 07:23:57 +0000 + linstor-client (1.23.0-1) experimental; urgency=medium [ Rene Peinthor ] diff --git a/debian/control b/debian/control index 8e0c0bc..d887ed4 100644 --- a/debian/control +++ b/debian/control @@ -19,7 +19,7 @@ Architecture: all Depends: ${misc:Depends}, python3-natsort, python3-setuptools, - python-linstor (>=1.23.0), + python-linstor (>=1.23.1), ${python3:Depends} Description: Linstor client command line tool This is a command client that communicates with the Linstor controller diff --git a/linstor_client/consts.py b/linstor_client/consts.py index 678e7ef..d7fe784 100644 --- a/linstor_client/consts.py +++ b/linstor_client/consts.py @@ -21,7 +21,7 @@ Global constants for linstor client """ -VERSION = "1.23.0" +VERSION = "1.23.1" try: from linstor_client.consts_githash import GITHASH diff --git a/setup.cfg b/setup.cfg index 815a9ca..4802f94 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,7 +6,7 @@ vendor = LINBIT HA-Solutions GmbH build_requires = python3-setuptools requires = - python-linstor >= 1.23.0 + python-linstor >= 1.23.1 [flake8] count = True diff --git a/setup.cfg.py2 b/setup.cfg.py2 index d5a2be6..cbb5680 100644 --- a/setup.cfg.py2 +++ b/setup.cfg.py2 @@ -6,4 +6,4 @@ vendor = LINBIT HA-Solutions GmbH build_requires = python2-setuptools requires = - python-linstor >= 1.23.0 + python-linstor >= 1.23.1 diff --git a/setup.py b/setup.py index 15f9e56..f09731f 100755 --- a/setup.py +++ b/setup.py @@ -197,7 +197,7 @@ def gen_data_files(): "linstor_client.commands" ], install_requires=[ - "python-linstor>=1.23.0" + "python-linstor>=1.23.1" ], py_modules=["linstor_client_main"], scripts=["scripts/linstor"],