diff --git a/Dockerfile b/Dockerfile index 00e06ff..812dff4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM centos:centos7 as builder -ENV LINSTOR_CLI_VERSION 1.8.0 -ENV PYTHON_LINSTOR_VERSION 1.8.0 +ENV LINSTOR_CLI_VERSION 1.9.0 +ENV PYTHON_LINSTOR_VERSION 1.9.0 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.8.0 +ENV LINSTOR_CLI_VERSION 1.9.0 ARG release=1 LABEL name="linstor-client" \ diff --git a/debian/changelog b/debian/changelog index 343721e..725fac6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,23 @@ +linstor-client (1.9.0-1) experimental; urgency=medium + + [ Rene Peinthor ] + * linstor controller which command that shows currently used controller + * node-info: show provider/layer errors only with new option + * drbd-opts: timeout clashes with the global linstor-client timeout option + * qmvs: remove old property reading + * node/info: add missing layers and providers + * cmds: always show all resources (including tiebreaker) + * node-info: add REMOTE_SPDK + * setup.py: fix parsing debian changelog with nonascii chars + + [ Moritz "WanzenBug" Wanzenböck ] + * Add linstor advise subcommands + + [ Gabor Hernadi ] + * RemoteSpdk: Added subcommands + + -- Rene Peinthor Mon, 19 Jul 2021 08:43:05 +0000 + linstor-client (1.8.0-1) experimental; urgency=medium * node: show info also for combined nodes diff --git a/debian/control b/debian/control index 045c6b1..c17e52a 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.8.0), + python-linstor (>=1.9.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 13ced57..32d2f61 100644 --- a/linstor_client/consts.py +++ b/linstor_client/consts.py @@ -21,7 +21,7 @@ Global constants for linstor client """ -VERSION = "1.8.0" +VERSION = "1.9.0" try: from linstor_client.consts_githash import GITHASH diff --git a/setup.cfg b/setup.cfg index 05a8ce2..19b6b50 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,4 +6,4 @@ vendor = LINBIT HA-Solutions GmbH build_requires = python3-setuptools requires = - python-linstor >= 1.8.0 + python-linstor >= 1.9.0 diff --git a/setup.cfg.py2 b/setup.cfg.py2 index 131db5f..8380f75 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.8.0 + python-linstor >= 1.9.0 diff --git a/setup.py b/setup.py index 4675e4f..8c93b81 100755 --- a/setup.py +++ b/setup.py @@ -198,7 +198,7 @@ def gen_data_files(): "linstor_client.commands" ], install_requires=[ - "python-linstor>=1.8.0" + "python-linstor>=1.9.0" ], py_modules=["linstor_client_main"], scripts=["scripts/linstor"],