diff --git a/.version b/.version index 0adbf03d..054459d1 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.42 +0.9.43 diff --git a/CHANGELOG.md b/CHANGELOG.md index 0dd29349..fef137fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ ## PVC Changelog +###### [v0.9.43](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.43) + + * [Packaging] Fixes a bad test in postinst + * [CLI] Adds support for removing VM interfaces by MAC address + * [CLI] Modifies the default restart + live behaviour to prefer the explicit restart + * [CLI] Adds support for adding additional VM interfaces in the same network + * [CLI] Various ordering and message fixes + * [Node Daemon] Adds additional delays and retries to fencing actions + * [All] Adds Black formatting for Python code and various script/hook cleanups + * [CLI/API] Adds automatic shutdown or stop when disabling a VM + * [CLI] Adds support for forcing colourized output + * [Docs] Remove obsolete Ansible and Testing manuals + ###### [v0.9.42](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.42) * [Documentation] Reworks and updates various documentation sections diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 6d18a0d7..cdb1b8c1 100755 --- a/api-daemon/pvcapid/Daemon.py +++ b/api-daemon/pvcapid/Daemon.py @@ -25,7 +25,7 @@ import yaml from distutils.util import strtobool as dustrtobool # Daemon version -version = "0.9.42" +version = "0.9.43" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 81c19666..4306e485 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.42", + version="0.9.43", packages=["pvc", "pvc.cli_lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index 8ea88d47..f16784b0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,18 @@ +pvc (0.9.43-0) unstable; urgency=high + + * [Packaging] Fixes a bad test in postinst + * [CLI] Adds support for removing VM interfaces by MAC address + * [CLI] Modifies the default restart + live behaviour to prefer the explicit restart + * [CLI] Adds support for adding additional VM interfaces in the same network + * [CLI] Various ordering and message fixes + * [Node Daemon] Adds additional delays and retries to fencing actions + * [All] Adds Black formatting for Python code and various script/hook cleanups + * [CLI/API] Adds automatic shutdown or stop when disabling a VM + * [CLI] Adds support for forcing colourized output + * [Docs] Remove obsolete Ansible and Testing manuals + + -- Joshua M. Boniface Mon, 08 Nov 2021 02:27:38 -0500 + pvc (0.9.42-0) unstable; urgency=high * [Documentation] Reworks and updates various documentation sections diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 3d5e56e4..70fd3aea 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.42" +version = "0.9.43" ##########################################################