From c6c44bf775a7dc5f9283356d0b79bdc600d4d951 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sat, 30 Sep 2023 12:57:55 -0400 Subject: [PATCH] Bump version to 0.9.78 --- .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 1b525aba..5c648ab7 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.77 +0.9.78 diff --git a/CHANGELOG.md b/CHANGELOG.md index b829deee..8302546e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## PVC Changelog +###### [v0.9.78](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.78) + + * [API, Client CLI] Fixes several bugs around image uploads; adds a new query parameter for non-raw images + * [API] Ensures RBD images are created with a raw bytes value to avoid rounding errors + ###### [v0.9.77](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.77) * [Client CLI] Fixes a bug from a bad library import diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 5aabfe14..1ff30ef7 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.77" +version = "0.9.78" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 4fa92aa6..b8b3990e 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.77", + version="0.9.78", packages=["pvc.cli", "pvc.lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index e9bac61c..d559d9af 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +pvc (0.9.78-0) unstable; urgency=high + + * [API, Client CLI] Fixes several bugs around image uploads; adds a new query parameter for non-raw images + * [API] Ensures RBD images are created with a raw bytes value to avoid rounding errors + + -- Joshua M. Boniface Sat, 30 Sep 2023 12:57:55 -0400 + pvc (0.9.77-0) unstable; urgency=high * [Client CLI] Fixes a bug from a bad library import diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 6e9bff02..c84253b1 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.77" +version = "0.9.78" ##########################################################