Skip to content

Commit 93ec1f0

Browse files
committed
prepare release v1.25.4
1 parent 76f28a0 commit 93ec1f0

File tree

8 files changed

+16
-8
lines changed

8 files changed

+16
-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.4] - 2025-04-10
12+
1113
### Fixed
1214

1315
- rd clone: fix crash if --curl was set

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.25.3
5-
ENV PYTHON_LINSTOR_VERSION 1.25.2
4+
ENV LINSTOR_CLI_VERSION 1.25.4
5+
ENV PYTHON_LINSTOR_VERSION 1.25.3
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.25.3
45+
ENV LINSTOR_CLI_VERSION 1.25.4
4646
ARG release=1
4747

4848
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.25.4-1) experimental; urgency=medium
2+
3+
* rd/clone: fix crash if --curl was set
4+
5+
-- Rene Peinthor <[email protected]> Thu, 10 Apr 2025 11:47:01 +0000
6+
17
linstor-client (1.25.3-1) experimental; urgency=medium
28

39
* volume-list: show empty replication states if there is no data provided

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.25.2),
22+
python-linstor (>=1.25.3),
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.25.3"
24+
VERSION = "1.25.4"
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.25.2
9+
python-linstor >= 1.25.3
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.25.2
9+
python-linstor >= 1.25.3

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.25.2"
201+
"python-linstor>=1.25.3"
202202
],
203203
py_modules=["linstor_client_main"],
204204
scripts=["scripts/linstor"],

0 commit comments

Comments
 (0)