File tree Expand file tree Collapse file tree 7 files changed +28
-8
lines changed Expand file tree Collapse file tree 7 files changed +28
-8
lines changed Original file line number Diff line number Diff line change 1
1
FROM centos:centos7 as builder
2
2
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
5
5
6
6
ENV LINSTOR_CLI_PKGNAME linstor-client
7
7
ENV LINSTOR_CLI_TGZ ${LINSTOR_CLI_PKGNAME}-${LINSTOR_CLI_VERSION}.tar.gz
@@ -45,7 +45,7 @@ FROM registry.access.redhat.com/ubi7/ubi
45
45
MAINTAINER Roland Kammerer <
[email protected] >
46
46
47
47
# 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
49
49
ARG release=1
50
50
51
51
LABEL name="linstor-client" \
Original file line number Diff line number Diff line change
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
+
1
21
linstor-client (1.8.0-1) experimental; urgency=medium
2
22
3
23
* node: show info also for combined nodes
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ Architecture: all
18
18
# keep python-natsort on its own line!
19
19
Depends: ${misc:Depends},
20
20
python3-natsort,
21
- python-linstor (>=1.8 .0),
21
+ python-linstor (>=1.9 .0),
22
22
${python3:Depends}
23
23
Description: Linstor client command line tool
24
24
This is a command client that communicates with the Linstor controller
Original file line number Diff line number Diff line change 21
21
Global constants for linstor client
22
22
"""
23
23
24
- VERSION = "1.8 .0"
24
+ VERSION = "1.9 .0"
25
25
26
26
try :
27
27
from linstor_client .consts_githash import GITHASH
Original file line number Diff line number Diff line change @@ -6,4 +6,4 @@ vendor = LINBIT HA-Solutions GmbH
6
6
build_requires =
7
7
python3-setuptools
8
8
requires =
9
- python-linstor >= 1.8 .0
9
+ python-linstor >= 1.9 .0
Original file line number Diff line number Diff line change @@ -6,4 +6,4 @@ vendor = LINBIT HA-Solutions GmbH
6
6
build_requires =
7
7
python2-setuptools
8
8
requires =
9
- python-linstor >= 1.8 .0
9
+ python-linstor >= 1.9 .0
Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ def gen_data_files():
198
198
"linstor_client.commands"
199
199
],
200
200
install_requires = [
201
- "python-linstor>=1.8 .0"
201
+ "python-linstor>=1.9 .0"
202
202
],
203
203
py_modules = ["linstor_client_main" ],
204
204
scripts = ["scripts/linstor" ],
You can’t perform that action at this time.
0 commit comments