From 387fcfdf6b5819a707faacf68043e06ed5cb26cf Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Mon, 10 Feb 2025 23:15:21 -0500 Subject: [PATCH] Bump version to 0.9.107 --- .version | 2 +- CHANGELOG.md | 4 ++++ client-cli/setup.py | 2 +- debian/changelog | 6 ++++++ health-daemon/pvchealthd/Daemon.py | 2 +- node-daemon/pvcnoded/Daemon.py | 2 +- worker-daemon/pvcworkerd/Daemon.py | 2 +- 7 files changed, 15 insertions(+), 5 deletions(-) diff --git a/.version b/.version index 5283cfcf..ab00bb81 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.106 +0.9.107 diff --git a/CHANGELOG.md b/CHANGELOG.md index 14c4736d..2d629e39 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## PVC Changelog +###### [v0.9.107](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.107) + + * [Worker Daemon] Fixes a bug where snapshot removal fails during autobackups + ###### [v0.9.106](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.106) * [API Daemon] Fixes a calculation bug when checking storage free space diff --git a/client-cli/setup.py b/client-cli/setup.py index 9c060466..0ed7167c 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.106", + version="0.9.107", packages=["pvc.cli", "pvc.lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index 97f7937d..c25524a0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pvc (0.9.107-0) unstable; urgency=high + + * [Worker Daemon] Fixes a bug where snapshot removal fails during autobackups + + -- Joshua M. Boniface Mon, 10 Feb 2025 23:15:21 -0500 + pvc (0.9.106-0) unstable; urgency=high * [API Daemon] Fixes a calculation bug when checking storage free space diff --git a/health-daemon/pvchealthd/Daemon.py b/health-daemon/pvchealthd/Daemon.py index 9a5dbec5..a7315f9d 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.106" +version = "0.9.107" ########################################################## diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 61a2072d..64db8ffd 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.106" +version = "0.9.107" ########################################################## diff --git a/worker-daemon/pvcworkerd/Daemon.py b/worker-daemon/pvcworkerd/Daemon.py index 5e502c27..c3ba7b87 100755 --- a/worker-daemon/pvcworkerd/Daemon.py +++ b/worker-daemon/pvcworkerd/Daemon.py @@ -58,7 +58,7 @@ from daemon_lib.automirror import ( ) # Daemon version -version = "0.9.106" +version = "0.9.107" config = cfg.get_configuration()