diff --git a/CHANGELOG.md b/CHANGELOG.md index 859383b..1c65158 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.0] - 2024-07-11 + ### Added - Autoplacer: Add --x-replicas-on-different option diff --git a/Dockerfile b/Dockerfile index 462e4d4..77641c9 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.22.1 -ENV PYTHON_LINSTOR_VERSION 1.22.0 +ENV LINSTOR_CLI_VERSION 1.23.0 +ENV PYTHON_LINSTOR_VERSION 1.23.0 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.22.1 +ENV LINSTOR_CLI_VERSION 1.23.0 ARG release=1 LABEL name="linstor-client" \ diff --git a/debian/changelog b/debian/changelog index a98e3a4..9fc4ae7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +linstor-client (1.23.0-1) experimental; urgency=medium + + [ Rene Peinthor ] + * debian: add python3-setuptools dependency + * gitlab: fix pip xmlrunner install + + [ Gabor Hernadi ] + * Autoplacer: Add --x-replicas-on-different option + * r d: Add --keep-tiebreaker + + -- Rene Peinthor Thu, 11 Jul 2024 09:28:12 +0000 + linstor-client (1.22.1-1) experimental; urgency=medium [ Rene Peinthor ] diff --git a/debian/control b/debian/control index 762fee5..8e0c0bc 100644 --- a/debian/control +++ b/debian/control @@ -19,7 +19,7 @@ Architecture: all Depends: ${misc:Depends}, python3-natsort, python3-setuptools, - python-linstor (>=1.22.0), + python-linstor (>=1.23.0), ${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 e3f0653..678e7ef 100644 --- a/linstor_client/consts.py +++ b/linstor_client/consts.py @@ -21,7 +21,7 @@ Global constants for linstor client """ -VERSION = "1.22.1" +VERSION = "1.23.0" try: from linstor_client.consts_githash import GITHASH diff --git a/setup.cfg b/setup.cfg index 3a77758..815a9ca 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,7 +6,7 @@ vendor = LINBIT HA-Solutions GmbH build_requires = python3-setuptools requires = - python-linstor >= 1.22.0 + python-linstor >= 1.23.0 [flake8] count = True diff --git a/setup.cfg.py2 b/setup.cfg.py2 index 51c0c17..d5a2be6 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.22.0 + python-linstor >= 1.23.0 diff --git a/setup.py b/setup.py index 4323707..15f9e56 100755 --- a/setup.py +++ b/setup.py @@ -197,7 +197,7 @@ def gen_data_files(): "linstor_client.commands" ], install_requires=[ - "python-linstor>=1.22.0" + "python-linstor>=1.23.0" ], py_modules=["linstor_client_main"], scripts=["scripts/linstor"],