File tree Expand file tree Collapse file tree 8 files changed +21
-8
lines changed Expand file tree Collapse file tree 8 files changed +21
-8
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8
8
9
9
## [ Unreleased]
10
10
11
+ ## [ 1.25.0] - 2025-03-19
12
+
11
13
### Changed
12
14
13
15
- resource-definition-list: add more state values CLONING/FAILED...
Original file line number Diff line number Diff line change 1
1
ARG BUILDER=registry.access.redhat.com/ubi8/ubi
2
2
FROM $BUILDER as builder
3
3
4
- ENV LINSTOR_CLI_VERSION 1.24 .0
5
- ENV PYTHON_LINSTOR_VERSION 1.24 .0
4
+ ENV LINSTOR_CLI_VERSION 1.25 .0
5
+ ENV PYTHON_LINSTOR_VERSION 1.25 .0
6
6
7
7
ENV LINSTOR_CLI_PKGNAME linstor-client
8
8
ENV LINSTOR_CLI_TGZ ${LINSTOR_CLI_PKGNAME}-${LINSTOR_CLI_VERSION}.tar.gz
@@ -42,7 +42,7 @@ FROM registry.access.redhat.com/ubi8/ubi
42
42
MAINTAINER Roland Kammerer <
[email protected] >
43
43
44
44
# ENV can not be shared between builder and "main"
45
- ENV LINSTOR_CLI_VERSION 1.24 .0
45
+ ENV LINSTOR_CLI_VERSION 1.25 .0
46
46
ARG release=1
47
47
48
48
LABEL name="linstor-client" \
Original file line number Diff line number Diff line change
1
+ linstor-client (1.25.0-1) experimental; urgency=medium
2
+
3
+ * node: improve evacuate help message
4
+ * rsc-dfn: add more state values
5
+ * volume-list: show drbd replication state in its own column
6
+ * vlm_cmd: Fix trying to display None type percentage
7
+ * gitlab: build for debian-bookworm
8
+ * fix incorrect --controllers environment priority if arg was given
9
+
10
+ -- Rene Peinthor <
[email protected] > Wed, 19 Mar 2025 15:22:38 +0000
11
+
1
12
linstor-client (1.24.0-1) experimental; urgency=medium
2
13
3
14
[ Gabor Hernadi ]
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ Architecture: all
19
19
Depends: ${misc:Depends},
20
20
python3-natsort,
21
21
python3-setuptools,
22
- python-linstor (>=1.24 .0),
22
+ python-linstor (>=1.25 .0),
23
23
${python3:Depends}
24
24
Description: Linstor client command line tool
25
25
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.24 .0"
24
+ VERSION = "1.25 .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,7 +6,7 @@ vendor = LINBIT HA-Solutions GmbH
6
6
build_requires =
7
7
python3-setuptools
8
8
requires =
9
- python-linstor >= 1.24 .0
9
+ python-linstor >= 1.25 .0
10
10
11
11
[flake8]
12
12
count = True
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.24 .0
9
+ python-linstor >= 1.25 .0
Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ def gen_data_files():
198
198
"linstor_client.commands.utils" ,
199
199
],
200
200
install_requires = [
201
- "python-linstor>=1.24 .0"
201
+ "python-linstor>=1.25 .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