From d0b54cf59e0227e135060cfd95963eb403b1f88d Mon Sep 17 00:00:00 2001 From: Rene Peinthor Date: Wed, 11 Oct 2023 07:42:11 +0000 Subject: [PATCH] prepare release v1.20.0 --- CHANGELOG.md | 2 ++ Dockerfile | 6 +++--- debian/changelog | 15 +++++++++++++++ debian/control | 2 +- linstor_client/consts.py | 2 +- setup.cfg | 2 +- setup.cfg.py2 | 2 +- setup.py | 2 +- 8 files changed, 25 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e8b778e..1211992 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.20.0] - 2023-10-11 + ### Added - Show skip-disk property and level resource list diff --git a/Dockerfile b/Dockerfile index b226d1f..6ed0bef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ ARG BUILDER=registry.access.redhat.com/ubi8/ubi FROM $BUILDER as builder -ENV LINSTOR_CLI_VERSION 1.19.0 -ENV PYTHON_LINSTOR_VERSION 1.19.0 +ENV LINSTOR_CLI_VERSION 1.20.0 +ENV PYTHON_LINSTOR_VERSION 1.20.0 ENV LINSTOR_CLI_PKGNAME linstor-client ENV LINSTOR_CLI_TGZ ${LINSTOR_CLI_PKGNAME}-${LINSTOR_CLI_VERSION}.tar.gz @@ -42,7 +42,7 @@ FROM registry.access.redhat.com/ubi8/ubi MAINTAINER Roland Kammerer # ENV can not be shared between builder and "main" -ENV LINSTOR_CLI_VERSION 1.19.0 +ENV LINSTOR_CLI_VERSION 1.20.0 ARG release=1 LABEL name="linstor-client" \ diff --git a/debian/changelog b/debian/changelog index 647ff5c..1ab1db4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,18 @@ +linstor-client (1.20.0-1) experimental; urgency=medium + + [ Rene Peinthor ] + * fix pep8 error + * Fix resource involved command AttributeError + * update CHANGELOG.md + + [ Gabor Hernadi ] + * Exos,list: Fixed help message + * Rsc,List: Show DELETING state for DRBD_DELETE rsc flag + * Remote: Fix typo + * Rsc,List: Show SkipDisk + + -- Rene Peinthor Wed, 11 Oct 2023 07:42:02 +0000 + linstor-client (1.19.0-1) experimental; urgency=medium [ Rene Peinthor ] diff --git a/debian/control b/debian/control index 8529cea..cf16053 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.19.0), + python-linstor (>=1.20.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 20eb228..a648935 100644 --- a/linstor_client/consts.py +++ b/linstor_client/consts.py @@ -21,7 +21,7 @@ Global constants for linstor client """ -VERSION = "1.19.0" +VERSION = "1.20.0" try: from linstor_client.consts_githash import GITHASH diff --git a/setup.cfg b/setup.cfg index fb19a79..76df3c6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,7 +6,7 @@ vendor = LINBIT HA-Solutions GmbH build_requires = python3-setuptools requires = - python-linstor >= 1.19.0 + python-linstor >= 1.20.0 [flake8] count = True diff --git a/setup.cfg.py2 b/setup.cfg.py2 index 2c169ce..1fbeccc 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.19.0 + python-linstor >= 1.20.0 diff --git a/setup.py b/setup.py index b4c7a1a..5d834a7 100755 --- a/setup.py +++ b/setup.py @@ -197,7 +197,7 @@ def gen_data_files(): "linstor_client.commands" ], install_requires=[ - "python-linstor>=1.19.0" + "python-linstor>=1.20.0" ], py_modules=["linstor_client_main"], scripts=["scripts/linstor"],