Skip to content

Commit

Permalink
linstor-client v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rp- committed Oct 30, 2018
1 parent 97b3d45 commit 0472bf1
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM ubuntu:xenial as builder

ENV PYTHON_LINSTOR_VERSION 0.6.2
ENV PYTHON_LINSTOR_VERSION 0.7.0
ENV PYTHON_LINSTOR_PKGNAME python-linstor
ENV PYTHON_LINSTOR_TGZ ${PYTHON_LINSTOR_PKGNAME}-${PYTHON_LINSTOR_VERSION}.tar.gz

ENV LINSTOR_CLI_VERSION 0.6.2
ENV LINSTOR_CLI_VERSION 0.7.0
ENV LINSTOR_CLI_PKGNAME linstor-client
ENV LINSTOR_TGZ ${LINSTOR_CLI_PKGNAME}-${LINSTOR_CLI_VERSION}.tar.gz

Expand Down
28 changes: 28 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
linstor-client (0.7.0-1) experimental; urgency=medium

[ Joel Colledge ]
* Multiple resources can now be created with a single API call
* The auto-place API is now synchronous so watching for events is not ne [...]
* Remove resource definition ready event which is no longer used
* Introduce transactional resource creation mode
* Show oversubscription information in the max volume size query
* Show port field of resource connection
* Add DRBD proxy configuration commands
* Fix tests to expect storage pool creation responses in a different order
* Remove need for drbdsetup_options.py
* Add configuration of DRBD Proxy options
* Add configuration of DRBD Proxy compression plugins
* Fix sorting of DRBD option arguments

[ Rene Peinthor ]
* interactive: allow commands to start with 'linstor'
* add a --verbose/-V flag
* Table: improve usage of table creation
* table: allow single colored cells and improve rendering
* resource-connection: add list, sp, lp, drbd-options commands
* error-list: allow to specify hours for --since parameter
* unittest: disable all unittests that create resources
* rsc-list: add swordfish volume state colors

-- Rene Peinthor <rene.peinthor@linbit.com> Tue, 30 Oct 2018 10:11:46 +0100

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

[ Rene Peinthor ]
Expand Down
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Architecture: all
# keep python-natsort on its own line!
Depends: ${misc:Depends},
python-natsort,
python-linstor (>=0.6.2),
python-linstor (>=0.7.0),
${python: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
"""

VERSION = "0.6.2"
VERSION = "0.7.0"

try:
from linstor.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,4 +6,4 @@ vendor = LINBIT HA-Solutions GmbH
build-requires =
python-setuptools
requires =
python-linstor >= 0.6.2
python-linstor >= 0.7.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"
],
install_requires=[
"python-linstor>=0.6.2"
"python-linstor>=0.7.0"
],
py_modules=["linstor_client_main"],
scripts=["scripts/linstor"],
Expand Down

0 comments on commit 0472bf1

Please sign in to comment.