From d65f51289791b15785cbb7825a8426e521689657 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sun, 6 Nov 2022 01:39:50 -0400 Subject: [PATCH] Bump version to 0.9.57 --- .version | 2 +- CHANGELOG.md | 7 +++++++ api-daemon/pvcapid/Daemon.py | 2 +- client-cli/setup.py | 2 +- debian/changelog | 9 +++++++++ node-daemon/pvcnoded/Daemon.py | 2 +- 6 files changed, 20 insertions(+), 4 deletions(-) diff --git a/.version b/.version index 6bfc0299..77663768 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.56 +0.9.57 diff --git a/CHANGELOG.md b/CHANGELOG.md index 608f7059..00f09bcf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ ## PVC Changelog +###### [v0.9.57](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.57) + + * [CLI] Removes an invalid reference to VXLAN + * [CLI] Improves the handling of invalid networks in VM lists and on attach + * [API] Modularizes the benchmarking library so it can be used externally too + * [Daemon Library] Adds a module tag file so it can be used externally too + ###### [v0.9.56](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.56) **Breaking Change**: Existing provisioner scripts are no longer valid; new example scripts are provided. diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 38dea93c..685cbb56 100755 --- a/api-daemon/pvcapid/Daemon.py +++ b/api-daemon/pvcapid/Daemon.py @@ -27,7 +27,7 @@ from ssl import SSLContext, TLSVersion from distutils.util import strtobool as dustrtobool # Daemon version -version = "0.9.56" +version = "0.9.57" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 806ed4b4..d580086f 100644 --- a/client-cli/setup.py +++ b/client-cli/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name="pvc", - version="0.9.56", + version="0.9.57", packages=["pvc", "pvc.cli_lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index 3747ac1d..acca7ffc 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +pvc (0.9.57-0) unstable; urgency=high + + * [CLI] Removes an invalid reference to VXLAN + * [CLI] Improves the handling of invalid networks in VM lists and on attach + * [API] Modularizes the benchmarking library so it can be used externally too + * [Daemon Library] Adds a module tag file so it can be used externally too + + -- Joshua M. Boniface Sun, 06 Nov 2022 01:39:50 -0400 + pvc (0.9.56-0) unstable; urgency=high * [API/Provisioner] Fundamentally revamps the provisioner script framework to provide more extensibility (BREAKING CHANGE) diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index b30c9e94..233dec22 100644 --- a/node-daemon/pvcnoded/Daemon.py +++ b/node-daemon/pvcnoded/Daemon.py @@ -48,7 +48,7 @@ import re import json # Daemon version -version = "0.9.56" +version = "0.9.57" ##########################################################