From aeb238f43ca124412965b071d2ae3751eb3b0b6b Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Wed, 8 Feb 2023 10:08:05 -0500 Subject: [PATCH] Bump version to 0.9.61 --- .version | 2 +- CHANGELOG.md | 5 +++++ api-daemon/pvcapid/Daemon.py | 2 +- client-cli/setup.py | 2 +- debian/changelog | 7 +++++++ node-daemon/pvcnoded/Daemon.py | 2 +- 6 files changed, 16 insertions(+), 4 deletions(-) diff --git a/.version b/.version index 843b8c23..848cc0cb 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.60 +0.9.61 diff --git a/CHANGELOG.md b/CHANGELOG.md index dee01ae3..735cdaa7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## PVC Changelog +###### [v0.9.61](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.61) + + * [provisioner] Fixes a bug in network comparison + * [api] Fixes a bug being unable to rename disabled VMs + ###### [v0.9.60](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.60) * [Provisioner] Cleans up several remaining bugs in the example scripts; they should all be valid now diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index aaabe322..33b71c7a 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.60" +version = "0.9.61" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 94e26d64..650c53a1 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.60", + version="0.9.61", packages=["pvc", "pvc.cli_lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index 0e0a3663..d4a62eaa 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +pvc (0.9.61-0) unstable; urgency=high + + * [provisioner] Fixes a bug in network comparison + * [api] Fixes a bug being unable to rename disabled VMs + + -- Joshua M. Boniface Wed, 08 Feb 2023 10:08:05 -0500 + pvc (0.9.60-0) unstable; urgency=high * [Provisioner] Cleans up several remaining bugs in the example scripts; they should all be valid now diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 0d083a33..46b89afa 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.60" +version = "0.9.61" ##########################################################