Skip to content

Commit 5f6e318

Browse files
committed
prepare release v1.24.0
1 parent d665091 commit 5f6e318

File tree

8 files changed

+27
-8
lines changed

8 files changed

+27
-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.24.0] - 2024-12-17
12+
1113
### Added
1214

1315
- Added options --target-resource-group and --force-move-resource-group to backup ship, restore and schedule enable.

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.23.2
5-
ENV PYTHON_LINSTOR_VERSION 1.23.1
4+
ENV LINSTOR_CLI_VERSION 1.24.0
5+
ENV PYTHON_LINSTOR_VERSION 1.24.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.23.2
45+
ENV LINSTOR_CLI_VERSION 1.24.0
4646
ARG release=1
4747

4848
LABEL name="linstor-client" \

debian/changelog

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
linstor-client (1.24.0-1) experimental; urgency=medium
2+
3+
[ Gabor Hernadi ]
4+
* DRBD-Options: Fix help text
5+
* Backup: Added --target-resource-group and --force-move-resource-group
6+
7+
[ Rene Peinthor ]
8+
* linstor-cloudstack: add orphaned resources helper script
9+
* rscdfn-clone: add --layer-list argument
10+
* rscdfn: add resource-group argument to clone
11+
* vlm-list: change column order rsc,node
12+
* rsc-dfn-list: show layers as column
13+
* rsc-list: show layers instead of port in table
14+
* resource/volume-list: show multiple primaries as yellow
15+
16+
-- Rene Peinthor <[email protected]> Tue, 17 Dec 2024 10:12:23 +0000
17+
118
linstor-client (1.23.2-1) experimental; urgency=medium
219

320
* Fix missing commands.utils package

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.23.1),
22+
python-linstor (>=1.24.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.23.2"
24+
VERSION = "1.24.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.23.1
9+
python-linstor >= 1.24.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.23.1
9+
python-linstor >= 1.24.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.23.1"
201+
"python-linstor>=1.24.0"
202202
],
203203
py_modules=["linstor_client_main"],
204204
scripts=["scripts/linstor"],

0 commit comments

Comments
 (0)