From 4885d705ccb38ce359ed58eab024bbc94413aaff Mon Sep 17 00:00:00 2001 From: Rene Peinthor Date: Wed, 6 Jul 2022 11:10:28 +0000 Subject: [PATCH] prepare release v1.14.0 --- Dockerfile | 6 +++--- debian/changelog | 16 ++++++++++++++++ debian/control | 2 +- linstor_client/consts.py | 2 +- setup.cfg | 2 +- setup.cfg.py2 | 2 +- setup.py | 2 +- 7 files changed, 24 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index b5ffe78..7d90998 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.13.1 -ENV PYTHON_LINSTOR_VERSION 1.13.1 +ENV LINSTOR_CLI_VERSION 1.14.0 +ENV PYTHON_LINSTOR_VERSION 1.14.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.13.1 +ENV LINSTOR_CLI_VERSION 1.14.0 ARG release=1 LABEL name="linstor-client" \ diff --git a/debian/changelog b/debian/changelog index c49594d..eb9dbb5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,19 @@ +linstor-client (1.14.0-1) experimental; urgency=medium + + [ Rene Peinthor ] + * fix broken remote completer + * schedule: add basic commands and enable/disable/delete + + [ Gabor Hernadi ] + * Schedule,crt,mod: Add cron syntax description + * Schedule,lbr: Add color for winning setting + + [ Johanna Kucera ] + * SosReport: add commands for new filter options + * BackupShipping: add keep-snaps option to delete-cmds + + -- Rene Peinthor Wed, 06 Jul 2022 11:10:15 +0000 + linstor-client (1.13.1-1) experimental; urgency=medium * gitlab: remove package before building diff --git a/debian/control b/debian/control index 6c9c397..2b2ed83 100644 --- a/debian/control +++ b/debian/control @@ -18,7 +18,7 @@ Architecture: all # keep python-natsort on its own line! Depends: ${misc:Depends}, python3-natsort, - python-linstor (>=1.13.1), + python-linstor (>=1.14.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 3697a17..7aeddba 100644 --- a/linstor_client/consts.py +++ b/linstor_client/consts.py @@ -21,7 +21,7 @@ Global constants for linstor client """ -VERSION = "1.13.1" +VERSION = "1.14.0" try: from linstor_client.consts_githash import GITHASH diff --git a/setup.cfg b/setup.cfg index 0e40862..4be54f5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,7 +6,7 @@ vendor = LINBIT HA-Solutions GmbH build_requires = python3-setuptools requires = - python-linstor >= 1.13.1 + python-linstor >= 1.14.0 [flake8] count = True diff --git a/setup.cfg.py2 b/setup.cfg.py2 index cb4fa85..ac37322 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.13.1 + python-linstor >= 1.14.0 diff --git a/setup.py b/setup.py index 81055f0..dc4ed9b 100755 --- a/setup.py +++ b/setup.py @@ -197,7 +197,7 @@ def gen_data_files(): "linstor_client.commands" ], install_requires=[ - "python-linstor>=1.13.1" + "python-linstor>=1.14.0" ], py_modules=["linstor_client_main"], scripts=["scripts/linstor"],