From 35c82b5249fa3ed056bac803a2a8d3a8c46465b9 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Thu, 17 Oct 2024 10:48:31 -0400 Subject: [PATCH] Bump version to 0.9.102 --- .version | 2 +- CHANGELOG.md | 5 +++++ client-cli/setup.py | 2 +- debian/changelog | 7 +++++++ health-daemon/pvchealthd/Daemon.py | 2 +- node-daemon/pvcnoded/Daemon.py | 2 +- worker-daemon/pvcworkerd/Daemon.py | 2 +- 7 files changed, 17 insertions(+), 5 deletions(-) diff --git a/.version b/.version index b7620533..4972fabc 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.101 +0.9.102 diff --git a/CHANGELOG.md b/CHANGELOG.md index 8dd7a3ff..96c0c16c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## PVC Changelog +###### [v0.9.102](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.102) + + * [API Daemon] Ensures that received config snapshots update storage hosts in addition to secret UUIDs + * [CLI Client] Fixes several bugs around local connection handling and connection listings + ###### [v0.9.101](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.101) **New Feature**: Adds VM snapshot sending (`vm snapshot send`), VM mirroring (`vm mirror create`), and (offline) mirror promotion (`vm mirror promote`). Permits transferring VM snapshots to remote clusters, individually or repeatedly, and promoting them to active status, for disaster recovery and migration between clusters. diff --git a/client-cli/setup.py b/client-cli/setup.py index 06f137ae..600c3d67 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.101", + version="0.9.102", packages=["pvc.cli", "pvc.lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index 4794464d..441aab36 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +pvc (0.9.102-0) unstable; urgency=high + + * [API Daemon] Ensures that received config snapshots update storage hosts in addition to secret UUIDs + * [CLI Client] Fixes several bugs around local connection handling and connection listings + + -- Joshua M. Boniface Thu, 17 Oct 2024 10:48:31 -0400 + pvc (0.9.101-0) unstable; urgency=high **New Feature**: Adds VM snapshot sending (`vm snapshot send`), VM mirroring (`vm mirror create`), and (offline) mirror promotion (`vm mirror promote`). Permits transferring VM snapshots to remote clusters, individually or repeatedly, and promoting them to active status, for disaster recovery and migration between clusters. diff --git a/health-daemon/pvchealthd/Daemon.py b/health-daemon/pvchealthd/Daemon.py index 3e3d99f5..5845e9e0 100644 --- a/health-daemon/pvchealthd/Daemon.py +++ b/health-daemon/pvchealthd/Daemon.py @@ -33,7 +33,7 @@ import os import signal # Daemon version -version = "0.9.101" +version = "0.9.102" ########################################################## diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 8a724af0..d98adb45 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.101" +version = "0.9.102" ########################################################## diff --git a/worker-daemon/pvcworkerd/Daemon.py b/worker-daemon/pvcworkerd/Daemon.py index 1a71ff42..bbe95dbb 100755 --- a/worker-daemon/pvcworkerd/Daemon.py +++ b/worker-daemon/pvcworkerd/Daemon.py @@ -55,7 +55,7 @@ from daemon_lib.autobackup import ( ) # Daemon version -version = "0.9.101" +version = "0.9.102" config = cfg.get_configuration()