diff --git a/Dockerfile b/Dockerfile index d5cd60c..8066fff 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ FROM ubuntu:xenial as builder -ENV PYTHON_LINSTOR_VERSION 0.2.1 +ENV PYTHON_LINSTOR_VERSION 0.2.2 ENV PYTHON_LINSTOR_PKGNAME python-linstor ENV PYTHON_LINSTOR_TGZ ${PYTHON_LINSTOR_PKGNAME}-${PYTHON_LINSTOR_VERSION}.tar.gz -ENV LINSTOR_CLI_VERSION 0.2.1 +ENV LINSTOR_CLI_VERSION 0.2.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 32bd42c..320d087 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,33 @@ +linstor-client (0.2.2-1) experimental; urgency=medium + + [ Joel Colledge ] + * Add volume resize command + * Show resizing state in volume and volume definition lists + * Improve resource create and delete help messages + * Show thin pool indicator instead of size for thinly provisioned pools + * Remove variables from API call response since the original format stri [...] + + [ Roland Kammerer ] + * Dockerfile: consistent naming and indenting + * build: allow FORCE=1 for dockerimage target + * Dockerfile: initial lbbuild integration + * build: dockerpath target + + [ Rene Peinthor ] + * unittest: fix new volumedefinition property + * fix incorrect diskless state reporting + * resource-list: indicate resource in use + * storpooldfn: remove filter options from storage pool definition + * rework all list command filter/groupby options + * change renamed api method name controller_shutdown() + * storage_pool_dfn: add query max size command + * rsc-auto-place: add diskless-on-remaining option + * packaging: remove protobuf dependency, already provided from python-linstor + * rsc-list: improve the output of resource state + * better handle connection timeouts + + -- Joel Colledge Tue, 17 Jul 2018 11:51:57 +0200 + linstor-client (0.2.1-1) experimental; urgency=medium [ Rene Peinthor ] diff --git a/debian/control b/debian/control index 8932645..9fe9db7 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.2.1), + python-linstor (>=0.2.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 d2ffe18..65d33ff 100644 --- a/linstor_client/consts.py +++ b/linstor_client/consts.py @@ -21,7 +21,7 @@ Global constants for linstor """ -VERSION = "0.2.1" +VERSION = "0.2.2" try: from linstor.consts_githash import GITHASH diff --git a/setup.py b/setup.py index 45cb806..7a9f6c8 100755 --- a/setup.py +++ b/setup.py @@ -198,7 +198,7 @@ def gen_data_files(): "linstor_client.commands" ], install_requires=[ - "python-linstor>=0.2.1" + "python-linstor>=0.2.2" ], py_modules=["linstor_client_main"], scripts=["scripts/linstor"],