Skip to content

Commit e16eabb

Browse files
committed
prepare release v1.23.0
1 parent bfe2b51 commit e16eabb

File tree

8 files changed

+22
-8
lines changed

8 files changed

+22
-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.23.0] - 2024-07-11
12+
1113
### Added
1214

1315
- Autoplacer: Add --x-replicas-on-different option

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.22.1
5-
ENV PYTHON_LINSTOR_VERSION 1.22.0
4+
ENV LINSTOR_CLI_VERSION 1.23.0
5+
ENV PYTHON_LINSTOR_VERSION 1.23.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 <roland.kammerer@linbit.com>
4343

4444
# ENV can not be shared between builder and "main"
45-
ENV LINSTOR_CLI_VERSION 1.22.1
45+
ENV LINSTOR_CLI_VERSION 1.23.0
4646
ARG release=1
4747

4848
LABEL name="linstor-client" \

debian/changelog

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
linstor-client (1.23.0-1) experimental; urgency=medium
2+
3+
[ Rene Peinthor ]
4+
* debian: add python3-setuptools dependency
5+
* gitlab: fix pip xmlrunner install
6+
7+
[ Gabor Hernadi ]
8+
* Autoplacer: Add --x-replicas-on-different option
9+
* r d: Add --keep-tiebreaker
10+
11+
-- Rene Peinthor <rene.peinthor@linbit.com> Thu, 11 Jul 2024 09:28:12 +0000
12+
113
linstor-client (1.22.1-1) experimental; urgency=medium
214

315
[ Rene Peinthor ]

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.22.0),
22+
python-linstor (>=1.23.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.22.1"
24+
VERSION = "1.23.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.22.0
9+
python-linstor >= 1.23.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.22.0
9+
python-linstor >= 1.23.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ def gen_data_files():
197197
"linstor_client.commands"
198198
],
199199
install_requires=[
200-
"python-linstor>=1.22.0"
200+
"python-linstor>=1.23.0"
201201
],
202202
py_modules=["linstor_client_main"],
203203
scripts=["scripts/linstor"],

0 commit comments

Comments
 (0)