From 819b79f4aa1fc396acf8072ab4264d685ab4bcba Mon Sep 17 00:00:00 2001 From: Rene Peinthor Date: Thu, 28 May 2020 13:58:47 +0000 Subject: [PATCH] prepare release v1.1.2 --- Dockerfile | 6 +++--- debian/changelog | 6 ++++++ debian/control | 2 +- linstor_client/consts.py | 2 +- setup.cfg | 2 +- setup.cfg.py2 | 2 +- setup.py | 2 +- 7 files changed, 14 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index e769c5b..f104977 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM centos:centos7 as builder -ENV LINSTOR_CLI_VERSION 1.1.1 -ENV PYTHON_LINSTOR_VERSION 1.1.1 +ENV LINSTOR_CLI_VERSION 1.1.2 +ENV PYTHON_LINSTOR_VERSION 1.1.2 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.1.1 +ENV LINSTOR_CLI_VERSION 1.1.2 ARG release=1 LABEL name="linstor-client" \ diff --git a/debian/changelog b/debian/changelog index 50652d2..aad2bfc 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +linstor-client (1.1.2-1) experimental; urgency=medium + + * refere to new python-linstor 1.1.2 library + + -- Rene Peinthor Thu, 28 May 2020 16:01:02 +0000 + linstor-client (1.1.1-1) experimental; urgency=medium * api: support storage-pool list argument for auto select filters diff --git a/debian/control b/debian/control index 11aa39f..2a1cabe 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.1.1), + python-linstor (>=1.1.2), ${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 ed4518e..f08d73d 100644 --- a/linstor_client/consts.py +++ b/linstor_client/consts.py @@ -21,7 +21,7 @@ Global constants for linstor """ -VERSION = "1.1.1" +VERSION = "1.1.2" try: from linstor.consts_githash import GITHASH diff --git a/setup.cfg b/setup.cfg index 1bf3cca..9f691c0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,4 +6,4 @@ vendor = LINBIT HA-Solutions GmbH build-requires = python3-setuptools requires = - python-linstor >= 1.1.1 + python-linstor >= 1.1.2 diff --git a/setup.cfg.py2 b/setup.cfg.py2 index ff8faf2..def2c7b 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.1.1 + python-linstor >= 1.1.2 diff --git a/setup.py b/setup.py index 48c68ea..535b86d 100755 --- a/setup.py +++ b/setup.py @@ -197,7 +197,7 @@ def gen_data_files(): "linstor_client.commands" ], install_requires=[ - "python-linstor>=1.1.1" + "python-linstor>=1.1.2" ], py_modules=["linstor_client_main"], scripts=["scripts/linstor"],