Skip to content

Commit

Permalink
prepare release v1.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rp- committed Dec 17, 2024
1 parent d665091 commit 5f6e318
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 8 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.24.0] - 2024-12-17

### Added

- Added options --target-resource-group and --force-move-resource-group to backup ship, restore and schedule enable.
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
ARG BUILDER=registry.access.redhat.com/ubi8/ubi
FROM $BUILDER as builder

ENV LINSTOR_CLI_VERSION 1.23.2
ENV PYTHON_LINSTOR_VERSION 1.23.1
ENV LINSTOR_CLI_VERSION 1.24.0
ENV PYTHON_LINSTOR_VERSION 1.24.0

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

# ENV can not be shared between builder and "main"
ENV LINSTOR_CLI_VERSION 1.23.2
ENV LINSTOR_CLI_VERSION 1.24.0
ARG release=1

LABEL name="linstor-client" \
Expand Down
17 changes: 17 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
linstor-client (1.24.0-1) experimental; urgency=medium

[ Gabor Hernadi ]
* DRBD-Options: Fix help text
* Backup: Added --target-resource-group and --force-move-resource-group

[ Rene Peinthor ]
* linstor-cloudstack: add orphaned resources helper script
* rscdfn-clone: add --layer-list argument
* rscdfn: add resource-group argument to clone
* vlm-list: change column order rsc,node
* rsc-dfn-list: show layers as column
* rsc-list: show layers instead of port in table
* resource/volume-list: show multiple primaries as yellow

-- Rene Peinthor <[email protected]> Tue, 17 Dec 2024 10:12:23 +0000

linstor-client (1.23.2-1) experimental; urgency=medium

* Fix missing commands.utils package
Expand Down
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Architecture: all
Depends: ${misc:Depends},
python3-natsort,
python3-setuptools,
python-linstor (>=1.23.1),
python-linstor (>=1.24.0),
${python3:Depends}
Description: Linstor client command line tool
This is a command client that communicates with the Linstor controller
Expand Down
2 changes: 1 addition & 1 deletion linstor_client/consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
Global constants for linstor client
"""

VERSION = "1.23.2"
VERSION = "1.24.0"

try:
from linstor_client.consts_githash import GITHASH
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ vendor = LINBIT HA-Solutions GmbH
build_requires =
python3-setuptools
requires =
python-linstor >= 1.23.1
python-linstor >= 1.24.0

[flake8]
count = True
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg.py2
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ vendor = LINBIT HA-Solutions GmbH
build_requires =
python2-setuptools
requires =
python-linstor >= 1.23.1
python-linstor >= 1.24.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def gen_data_files():
"linstor_client.commands.utils",
],
install_requires=[
"python-linstor>=1.23.1"
"python-linstor>=1.24.0"
],
py_modules=["linstor_client_main"],
scripts=["scripts/linstor"],
Expand Down

0 comments on commit 5f6e318

Please sign in to comment.