Skip to content

Commit 2045105

Browse files
committed
prepare release v1.9.0
1 parent 1c409ad commit 2045105

File tree

7 files changed

+28
-8
lines changed

7 files changed

+28
-8
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM centos:centos7 as builder
22

3-
ENV LINSTOR_CLI_VERSION 1.8.0
4-
ENV PYTHON_LINSTOR_VERSION 1.8.0
3+
ENV LINSTOR_CLI_VERSION 1.9.0
4+
ENV PYTHON_LINSTOR_VERSION 1.9.0
55

66
ENV LINSTOR_CLI_PKGNAME linstor-client
77
ENV LINSTOR_CLI_TGZ ${LINSTOR_CLI_PKGNAME}-${LINSTOR_CLI_VERSION}.tar.gz
@@ -45,7 +45,7 @@ FROM registry.access.redhat.com/ubi7/ubi
4545
MAINTAINER Roland Kammerer <[email protected]>
4646

4747
# ENV can not be shared between builder and "main"
48-
ENV LINSTOR_CLI_VERSION 1.8.0
48+
ENV LINSTOR_CLI_VERSION 1.9.0
4949
ARG release=1
5050

5151
LABEL name="linstor-client" \

debian/changelog

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
linstor-client (1.9.0-1) experimental; urgency=medium
2+
3+
[ Rene Peinthor ]
4+
* linstor controller which command that shows currently used controller
5+
* node-info: show provider/layer errors only with new option
6+
* drbd-opts: timeout clashes with the global linstor-client timeout option
7+
* qmvs: remove old property reading
8+
* node/info: add missing layers and providers
9+
* cmds: always show all resources (including tiebreaker)
10+
* node-info: add REMOTE_SPDK
11+
* setup.py: fix parsing debian changelog with nonascii chars
12+
13+
[ Moritz "WanzenBug" Wanzenböck ]
14+
* Add linstor advise subcommands
15+
16+
[ Gabor Hernadi ]
17+
* RemoteSpdk: Added subcommands
18+
19+
-- Rene Peinthor <[email protected]> Mon, 19 Jul 2021 08:43:05 +0000
20+
121
linstor-client (1.8.0-1) experimental; urgency=medium
222

323
* node: show info also for combined nodes

debian/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Architecture: all
1818
# keep python-natsort on its own line!
1919
Depends: ${misc:Depends},
2020
python3-natsort,
21-
python-linstor (>=1.8.0),
21+
python-linstor (>=1.9.0),
2222
${python3:Depends}
2323
Description: Linstor client command line tool
2424
This is a command client that communicates with the Linstor controller

linstor_client/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
Global constants for linstor client
2222
"""
2323

24-
VERSION = "1.8.0"
24+
VERSION = "1.9.0"
2525

2626
try:
2727
from linstor_client.consts_githash import GITHASH

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ vendor = LINBIT HA-Solutions GmbH
66
build_requires =
77
python3-setuptools
88
requires =
9-
python-linstor >= 1.8.0
9+
python-linstor >= 1.9.0

setup.cfg.py2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ vendor = LINBIT HA-Solutions GmbH
66
build_requires =
77
python2-setuptools
88
requires =
9-
python-linstor >= 1.8.0
9+
python-linstor >= 1.9.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ def gen_data_files():
198198
"linstor_client.commands"
199199
],
200200
install_requires=[
201-
"python-linstor>=1.8.0"
201+
"python-linstor>=1.9.0"
202202
],
203203
py_modules=["linstor_client_main"],
204204
scripts=["scripts/linstor"],

0 commit comments

Comments
 (0)