diff --git a/.version b/.version index a06533a2..e93a3fbe 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.66 +0.9.67 diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b6b73ca..362cf282 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## PVC Changelog +###### [v0.9.67](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.67) + + * [CLI] Fixes several more bugs in the refactored CLI + ###### [v0.9.66](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.66) * [CLI] Fixes a missing YAML import in CLI diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index c5de48b8..c8e41437 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.66" +version = "0.9.67" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index a4f48822..86d512d0 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.66", + version="0.9.67", packages=["pvc.cli", "pvc.lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index 4cdc0510..d281c394 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pvc (0.9.67-0) unstable; urgency=high + + * [CLI] Fixes several more bugs in the refactored CLI + + -- Joshua M. Boniface Sun, 27 Aug 2023 14:47:20 -0400 + pvc (0.9.66-0) unstable; urgency=high * [CLI] Fixes a missing YAML import in CLI diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 20cae4b7..51ec72ad 100644 --- a/node-daemon/pvcnoded/Daemon.py +++ b/node-daemon/pvcnoded/Daemon.py @@ -49,7 +49,7 @@ import re import json # Daemon version -version = "0.9.66" +version = "0.9.67" ##########################################################