From 1b6a20d8e6fb0207da6175d6f217e7cd24a09664 Mon Sep 17 00:00:00 2001 From: Rene Peinthor Date: Thu, 22 Nov 2018 10:55:16 +0100 Subject: [PATCH] linstor-client v0.7.2 --- Dockerfile | 4 ++-- debian/changelog | 13 +++++++++++++ debian/control | 2 +- linstor_client/consts.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 6 files changed, 19 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index f2713c5..124aff4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ FROM ubuntu:xenial as builder -ENV PYTHON_LINSTOR_VERSION 0.7.1 +ENV PYTHON_LINSTOR_VERSION 0.7.2 ENV PYTHON_LINSTOR_PKGNAME python-linstor ENV PYTHON_LINSTOR_TGZ ${PYTHON_LINSTOR_PKGNAME}-${PYTHON_LINSTOR_VERSION}.tar.gz -ENV LINSTOR_CLI_VERSION 0.7.1 +ENV LINSTOR_CLI_VERSION 0.7.2 ENV LINSTOR_CLI_PKGNAME linstor-client ENV LINSTOR_TGZ ${LINSTOR_CLI_PKGNAME}-${LINSTOR_CLI_VERSION}.tar.gz diff --git a/debian/changelog b/debian/changelog index 209bccf..f818a29 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +linstor-client (0.7.2-1) experimental; urgency=medium + + [ Joel Colledge ] + * Add snapshot rollback command + * Add auto-completion for node reconnect command + + [ Rene Peinthor ] + * vlm-dfn/props: fix case sensitive resource lookup + * name lookups should be case insensitiv + * Add warning if no property map could be found or more data + + -- Rene Peinthor Thu, 22 Nov 2018 10:52:27 +0100 + linstor-client (0.7.1-1) experimental; urgency=medium [ Rene Peinthor ] diff --git a/debian/control b/debian/control index 87f831f..e680ac3 100644 --- a/debian/control +++ b/debian/control @@ -18,7 +18,7 @@ Architecture: all # keep python-natsort on its own line! Depends: ${misc:Depends}, python-natsort, - python-linstor (>=0.7.1), + python-linstor (>=0.7.2), ${python: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 d07b86a..23690a6 100644 --- a/linstor_client/consts.py +++ b/linstor_client/consts.py @@ -21,7 +21,7 @@ Global constants for linstor """ -VERSION = "0.7.1" +VERSION = "0.7.2" try: from linstor.consts_githash import GITHASH diff --git a/setup.cfg b/setup.cfg index 0006421..7006631 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,4 +6,4 @@ vendor = LINBIT HA-Solutions GmbH build-requires = python-setuptools requires = - python-linstor >= 0.7.1 + python-linstor >= 0.7.2 diff --git a/setup.py b/setup.py index 689c224..919e0b8 100755 --- a/setup.py +++ b/setup.py @@ -198,7 +198,7 @@ def gen_data_files(): "linstor_client.commands" ], install_requires=[ - "python-linstor>=0.7.1" + "python-linstor>=0.7.2" ], py_modules=["linstor_client_main"], scripts=["scripts/linstor"],