diff --git a/Dockerfile b/Dockerfile index 1884e1c..36ae740 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ FROM ubuntu:xenial as builder -ENV PYTHON_LINSTOR_VERSION 0.6.1 +ENV PYTHON_LINSTOR_VERSION 0.6.2 ENV PYTHON_LINSTOR_PKGNAME python-linstor ENV PYTHON_LINSTOR_TGZ ${PYTHON_LINSTOR_PKGNAME}-${PYTHON_LINSTOR_VERSION}.tar.gz -ENV LINSTOR_CLI_VERSION 0.6.1 +ENV LINSTOR_CLI_VERSION 0.6.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 d3ad772..69c9a4d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,32 @@ +linstor-client (0.6.2-1) experimental; urgency=medium + + [ Rene Peinthor ] + * list-cmds: show additional api reply messages + * list: do not print non api call responses + * filter watch created output from reply output + * use correct reply filter methods + * fix-python3: async is a keyword in python 3.7 + * apicallresponse: show linstor command to get error reports + * tests: add delete_non_existing_rsc_dfn + * main: except ArgumentTypeError + * drbd-options: byte options can now use units + * rsc: split InUse output from state + * storpool-swordfish: storage_service property isn't needed anymore + * rsc-list: fix exception if a satellite is not connected + * controller-set-prop: honor --aux option + + [ Roland Kammerer ] + * fix error-reports show redirect + * snapshot create: improve help message + * migrate: zfs thin is now supported + + [ Joel Colledge ] + * Delete APIs are now synchronous so watching for events is not necessary + * Resource delete responses have been swapped + * Remove misleading attempt at typing parser argument + + -- Rene Peinthor Tue, 02 Oct 2018 08:27:53 +0200 + linstor-client (0.6.1-1) experimental; urgency=medium [ Rene Peinthor ] diff --git a/debian/control b/debian/control index 280cabb..88848c3 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.6.1), + python-linstor (>=0.6.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 e5b3fdd..e801798 100644 --- a/linstor_client/consts.py +++ b/linstor_client/consts.py @@ -21,7 +21,7 @@ Global constants for linstor """ -VERSION = "0.6.1" +VERSION = "0.6.2" try: from linstor.consts_githash import GITHASH diff --git a/setup.cfg b/setup.cfg index 0937ae8..d815317 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,4 +6,4 @@ vendor = LINBIT HA-Solutions GmbH build-requires = python-setuptools requires = - python-linstor >= 0.6.1 + python-linstor >= 0.6.2 diff --git a/setup.py b/setup.py index c937a53..02554ab 100755 --- a/setup.py +++ b/setup.py @@ -198,7 +198,7 @@ def gen_data_files(): "linstor_client.commands" ], install_requires=[ - "python-linstor>=0.6.1" + "python-linstor>=0.6.2" ], py_modules=["linstor_client_main"], scripts=["scripts/linstor"],