diff --git a/.version b/.version index e93a3fbe..02c790ff 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.67 +0.9.68 diff --git a/CHANGELOG.md b/CHANGELOG.md index 362cf282..1696cf07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## PVC Changelog +###### [v0.9.68](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.68) + + * [CLI] Fixes another bug with network info view + ###### [v0.9.67](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.67) * [CLI] Fixes several more bugs in the refactored CLI diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index c8e41437..5e754c48 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.67" +version = "0.9.68" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 86d512d0..5ef162d9 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.67", + version="0.9.68", packages=["pvc.cli", "pvc.lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index d281c394..abc00bd5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pvc (0.9.68-0) unstable; urgency=high + + * [CLI] Fixes another bug with network info view + + -- Joshua M. Boniface Sun, 27 Aug 2023 20:59:23 -0400 + pvc (0.9.67-0) unstable; urgency=high * [CLI] Fixes several more bugs in the refactored CLI diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 51ec72ad..a6b883d4 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.67" +version = "0.9.68" ##########################################################