File tree Expand file tree Collapse file tree 7 files changed +18
-8
lines changed Expand file tree Collapse file tree 7 files changed +18
-8
lines changed Original file line number Diff line number Diff line change 11FROM centos:centos7 as builder
22
3- ENV LINSTOR_CLI_VERSION 1.3 .0
4- ENV PYTHON_LINSTOR_VERSION 1.3 .0
3+ ENV LINSTOR_CLI_VERSION 1.4 .0
4+ ENV PYTHON_LINSTOR_VERSION 1.4 .0
55
66ENV LINSTOR_CLI_PKGNAME linstor-client
77ENV LINSTOR_CLI_TGZ ${LINSTOR_CLI_PKGNAME}-${LINSTOR_CLI_VERSION}.tar.gz
@@ -45,7 +45,7 @@ FROM registry.access.redhat.com/ubi7/ubi
4545MAINTAINER Roland Kammerer <
[email protected] >
4646
4747# ENV can not be shared between builder and "main"
48- ENV LINSTOR_CLI_VERSION 1.3 .0
48+ ENV LINSTOR_CLI_VERSION 1.4 .0
4949ARG release=1
5050
5151LABEL name="linstor-client" \
Original file line number Diff line number Diff line change 1+ linstor-client (1.4.0-1) experimental; urgency=medium
2+
3+ * main: allow setting global args from environment variables
4+ * move error cmds into its own module
5+ * error-report: add delete command
6+ * gitlab-ci: push jenkins to nexus repo
7+ * commandline: allow argparse choices to be case insensitive
8+
9+ -- Rene Peinthor <
[email protected] > Wed, 23 Sep 2020 09:35:28 +0000
10+
111linstor-client (1.3.0-1) experimental; urgency=medium
212
313 * use apiconsts flags for TIE_BREAKER check
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ Architecture: all
1818# keep python-natsort on its own line!
1919Depends: ${misc:Depends},
2020 python3-natsort,
21- python-linstor (>=1.3 .0),
21+ python-linstor (>=1.4 .0),
2222 ${python3:Depends}
2323Description: Linstor client command line tool
2424 This is a command client that communicates with the Linstor controller
Original file line number Diff line number Diff line change 2121Global constants for linstor
2222"""
2323
24- VERSION = "1.3 .0"
24+ VERSION = "1.4 .0"
2525
2626try :
2727 from linstor .consts_githash import GITHASH
Original file line number Diff line number Diff line change @@ -6,4 +6,4 @@ vendor = LINBIT HA-Solutions GmbH
66build-requires =
77 python3-setuptools
88requires =
9- python-linstor >= 1.3 .0
9+ python-linstor >= 1.4 .0
Original file line number Diff line number Diff line change @@ -6,4 +6,4 @@ vendor = LINBIT HA-Solutions GmbH
66build-requires =
77 python2-setuptools
88requires =
9- python-linstor >= 1.3 .0
9+ python-linstor >= 1.4 .0
Original file line number Diff line number Diff line change @@ -197,7 +197,7 @@ def gen_data_files():
197197 "linstor_client.commands"
198198 ],
199199 install_requires = [
200- "python-linstor>=1.3 .0"
200+ "python-linstor>=1.4 .0"
201201 ],
202202 py_modules = ["linstor_client_main" ],
203203 scripts = ["scripts/linstor" ],
You can’t perform that action at this time.
0 commit comments