Skip to content

Commit 64442a6

Browse files
committed
prepare release v1.7.0
1 parent 83ce18a commit 64442a6

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.6.1
4-
ENV PYTHON_LINSTOR_VERSION 1.6.0
3+
ENV LINSTOR_CLI_VERSION 1.7.0
4+
ENV PYTHON_LINSTOR_VERSION 1.7.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.6.1
48+
ENV LINSTOR_CLI_VERSION 1.7.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.7.0-1) experimental; urgency=medium
2+
3+
[ Rene Peinthor ]
4+
* interactive: help with a command reported command as unknown
5+
* debian: install bash completion through setup.py
6+
* resource/involved: New command that shows only involved resources from [...]
7+
* tests: fix for latest controller version
8+
* gitlab-ci: try to checkout same linstor-api-py branch
9+
* gitlab-ci: trigger linstor-tests on jenkins push
10+
* fix showing incorrect linstor-client githash
11+
12+
[ Gabor Hernadi ]
13+
* Allow commands to neglect SHORT version
14+
* sp-create: added --external_locking flag
15+
* sp list: added sharedName column
16+
* storpools: add exos storage pool support
17+
* RG: add diskless-storpool-list filter
18+
19+
-- Rene Peinthor <[email protected]> Tue, 27 Apr 2021 11:36:59 +0000
20+
121
linstor-client (1.6.1-1) experimental; urgency=medium
222

323
* interactive: recover interactive connection after socket timeout

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.6.0),
21+
python-linstor (>=1.7.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.6.1"
24+
VERSION = "1.7.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.6.0
9+
python-linstor >= 1.7.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.6.0
9+
python-linstor >= 1.7.0

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.6.0"
200+
"python-linstor>=1.7.0"
201201
],
202202
py_modules=["linstor_client_main"],
203203
scripts=["scripts/linstor"],

0 commit comments

Comments
 (0)