Skip to content

Commit 08bd6f6

Browse files
committed
prepare release v1.4.2
1 parent bfe9619 commit 08bd6f6

File tree

7 files changed

+14
-8
lines changed

7 files changed

+14
-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.4.1
4-
ENV PYTHON_LINSTOR_VERSION 1.4.1
3+
ENV LINSTOR_CLI_VERSION 1.4.2
4+
ENV PYTHON_LINSTOR_VERSION 1.4.2
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.4.1
48+
ENV LINSTOR_CLI_VERSION 1.4.2
4949
ARG release=1
5050

5151
LABEL name="linstor-client" \

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
linstor-client (1.4.2-1) experimental; urgency=medium
2+
3+
* add space-reporting command
4+
5+
-- Rene Peinthor <[email protected]> Wed, 25 Nov 2020 11:58:38 +0000
6+
17
linstor-client (1.4.1-1) experimental; urgency=medium
28

39
* migrate: remove unused AllowLargerVolumeSize property

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.4.1),
21+
python-linstor (>=1.4.2),
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
2222
"""
2323

24-
VERSION = "1.4.1"
24+
VERSION = "1.4.2"
2525

2626
try:
2727
from linstor.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.4.1
9+
python-linstor >= 1.4.2

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.4.1
9+
python-linstor >= 1.4.2

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ def gen_data_files():
197197
"linstor_client.commands"
198198
],
199199
install_requires=[
200-
"python-linstor>=1.4.1"
200+
"python-linstor>=1.4.2"
201201
],
202202
py_modules=["linstor_client_main"],
203203
scripts=["scripts/linstor"],

0 commit comments

Comments
 (0)