Skip to content

Commit 71826e3

Browse files
committed
prepare release v1.25.0
1 parent daad390 commit 71826e3

File tree

8 files changed

+21
-8
lines changed

8 files changed

+21
-8
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
## [Unreleased]
1010

11+
## [1.25.0] - 2025-03-19
12+
1113
### Changed
1214

1315
- resource-definition-list: add more state values CLONING/FAILED...

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
ARG BUILDER=registry.access.redhat.com/ubi8/ubi
22
FROM $BUILDER as builder
33

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
66

77
ENV LINSTOR_CLI_PKGNAME linstor-client
88
ENV LINSTOR_CLI_TGZ ${LINSTOR_CLI_PKGNAME}-${LINSTOR_CLI_VERSION}.tar.gz
@@ -42,7 +42,7 @@ FROM registry.access.redhat.com/ubi8/ubi
4242
MAINTAINER Roland Kammerer <[email protected]>
4343

4444
# 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
4646
ARG release=1
4747

4848
LABEL name="linstor-client" \

debian/changelog

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
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+
112
linstor-client (1.24.0-1) experimental; urgency=medium
213

314
[ Gabor Hernadi ]

debian/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Architecture: all
1919
Depends: ${misc:Depends},
2020
python3-natsort,
2121
python3-setuptools,
22-
python-linstor (>=1.24.0),
22+
python-linstor (>=1.25.0),
2323
${python3:Depends}
2424
Description: Linstor client command line tool
2525
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.24.0"
24+
VERSION = "1.25.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,7 +6,7 @@ vendor = LINBIT HA-Solutions GmbH
66
build_requires =
77
python3-setuptools
88
requires =
9-
python-linstor >= 1.24.0
9+
python-linstor >= 1.25.0
1010

1111
[flake8]
1212
count = True

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.24.0
9+
python-linstor >= 1.25.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ def gen_data_files():
198198
"linstor_client.commands.utils",
199199
],
200200
install_requires=[
201-
"python-linstor>=1.24.0"
201+
"python-linstor>=1.25.0"
202202
],
203203
py_modules=["linstor_client_main"],
204204
scripts=["scripts/linstor"],

0 commit comments

Comments
 (0)