From 22c46511698961703a6e16c55c3651fdcc1eb79f Mon Sep 17 00:00:00 2001 From: Rene Peinthor Date: Tue, 7 Sep 2021 09:33:26 +0000 Subject: [PATCH] prepare release v1.10.1 --- Dockerfile | 6 +++--- debian/changelog | 9 +++++++++ debian/control | 2 +- linstor_client/consts.py | 2 +- setup.cfg | 2 +- setup.cfg.py2 | 2 +- setup.py | 2 +- 7 files changed, 17 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5644563..1e20891 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM centos:centos7 as builder -ENV LINSTOR_CLI_VERSION 1.10.0 -ENV PYTHON_LINSTOR_VERSION 1.10.0 +ENV LINSTOR_CLI_VERSION 1.10.1 +ENV PYTHON_LINSTOR_VERSION 1.10.1 ENV LINSTOR_CLI_PKGNAME linstor-client ENV LINSTOR_CLI_TGZ ${LINSTOR_CLI_PKGNAME}-${LINSTOR_CLI_VERSION}.tar.gz @@ -45,7 +45,7 @@ FROM registry.access.redhat.com/ubi7/ubi MAINTAINER Roland Kammerer # ENV can not be shared between builder and "main" -ENV LINSTOR_CLI_VERSION 1.10.0 +ENV LINSTOR_CLI_VERSION 1.10.1 ARG release=1 LABEL name="linstor-client" \ diff --git a/debian/changelog b/debian/changelog index 29a2f96..e242541 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +linstor-client (1.10.1-1) experimental; urgency=medium + + * Snapshot,delete: Add --nodes parameter + * Node,list: added optional Eviction Time to state when node is OFFLINE + * RscGrp: Added adjust command + * Node,restore: Add delete-resources and -snapshots + + -- Gabor Hernadi Tue, 07 Sep 2021 09:33:03 +0000 + linstor-client (1.10.0-1) experimental; urgency=medium [ Moritz "WanzenBug" Wanzenböck ] diff --git a/debian/control b/debian/control index ea49b64..8da0ad6 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.10.0), + python-linstor (>=1.10.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 277c04b..96ab5a9 100644 --- a/linstor_client/consts.py +++ b/linstor_client/consts.py @@ -21,7 +21,7 @@ Global constants for linstor client """ -VERSION = "1.10.0" +VERSION = "1.10.1" try: from linstor_client.consts_githash import GITHASH diff --git a/setup.cfg b/setup.cfg index 110f88b..d57f976 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,4 +6,4 @@ vendor = LINBIT HA-Solutions GmbH build_requires = python3-setuptools requires = - python-linstor >= 1.10.0 + python-linstor >= 1.10.1 diff --git a/setup.cfg.py2 b/setup.cfg.py2 index eb2e87e..5a96144 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.10.0 + python-linstor >= 1.10.1 diff --git a/setup.py b/setup.py index aa7160d..f8db27f 100755 --- a/setup.py +++ b/setup.py @@ -198,7 +198,7 @@ def gen_data_files(): "linstor_client.commands" ], install_requires=[ - "python-linstor>=1.10.0" + "python-linstor>=1.10.1" ], py_modules=["linstor_client_main"], scripts=["scripts/linstor"],