Skip to content

Commit

Permalink
prepare release v1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rp- committed May 28, 2020
1 parent cf9ab40 commit 819b79f
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -45,7 +45,7 @@ FROM registry.access.redhat.com/ubi7/ubi
MAINTAINER Roland Kammerer <[email protected]>

# 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" \
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
linstor-client (1.1.2-1) experimental; urgency=medium

* refere to new python-linstor 1.1.2 library

-- Rene Peinthor <[email protected]> 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
Expand Down
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion linstor_client/consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
Global constants for linstor
"""

VERSION = "1.1.1"
VERSION = "1.1.2"

try:
from linstor.consts_githash import GITHASH
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ vendor = LINBIT HA-Solutions GmbH
build-requires =
python3-setuptools
requires =
python-linstor >= 1.1.1
python-linstor >= 1.1.2
2 changes: 1 addition & 1 deletion setup.cfg.py2
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ vendor = LINBIT HA-Solutions GmbH
build-requires =
python2-setuptools
requires =
python-linstor >= 1.1.1
python-linstor >= 1.1.2
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down

0 comments on commit 819b79f

Please sign in to comment.