Skip to content

Commit 995b2b7

Browse files
committed
prepare release v1.26.0
1 parent be54751 commit 995b2b7

File tree

8 files changed

+26
-8
lines changed

8 files changed

+26
-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.26.0] - 2025-08-18
12+
1113
### Added
1214

1315
- snapshot list and set property commands

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.4
5-
ENV PYTHON_LINSTOR_VERSION 1.25.3
4+
ENV LINSTOR_CLI_VERSION 1.26.0
5+
ENV PYTHON_LINSTOR_VERSION 1.26.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.25.4
45+
ENV LINSTOR_CLI_VERSION 1.26.0
4646
ARG release=1
4747

4848
LABEL name="linstor-client" \

debian/changelog

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
linstor-client (1.26.0-1) experimental; urgency=medium
2+
3+
[ Rene Peinthor ]
4+
* Add snapshot list-properties and set property commands
5+
* gitlab: python version shouldn't contain 0
6+
* drbd-opts: fix out of range, unit display
7+
8+
[ Gabor Hernadi ]
9+
* Node,list: Improve Auto-eviction message
10+
* Drbd: Move Ports column from RscDfn to Rsc
11+
* Removed EXOS
12+
* Snap,ship: Remove
13+
* Snap,rollback: Add --zfs-rollback-strategy option
14+
15+
-- Rene Peinthor <[email protected]> Mon, 18 Aug 2025 09:10:21 +0000
16+
117
linstor-client (1.25.4-1) experimental; urgency=medium
218

319
* rd/clone: fix crash if --curl was set

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.3),
22+
python-linstor (>=1.26.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.25.4"
24+
VERSION = "1.26.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.25.3
9+
python-linstor >= 1.26.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.25.3
9+
python-linstor >= 1.26.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.25.3"
201+
"python-linstor>=1.26.0"
202202
],
203203
py_modules=["linstor_client_main"],
204204
scripts=["scripts/linstor"],

0 commit comments

Comments
 (0)