From a28f8372b36381424175180858c2c0efa3668166 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sun, 1 Mar 2026 22:48:49 -0500 Subject: [PATCH] Bump version to 1.0.3 --- .version | 2 +- CHANGELOG.md | 5 +++++ client-cli/pvc/cli/helpers.py | 2 +- client-cli/pyproject.toml | 2 +- debian/changelog | 7 +++++++ health-daemon/pvchealthd/Daemon.py | 2 +- node-daemon/pvcnoded/Daemon.py | 2 +- worker-daemon/pvcworkerd/Daemon.py | 2 +- 8 files changed, 18 insertions(+), 6 deletions(-) diff --git a/.version b/.version index 6d7de6e6..21e8796a 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -1.0.2 +1.0.3 diff --git a/CHANGELOG.md b/CHANGELOG.md index fd4531ea..3b47b09c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## PVC Changelog +###### [v1.0.3](https://github.com/parallelvirtualcluster/pvc/releases/tag/v1.0.3) + + * Fixes silent errors in the dnsmasq DHCP lease handler which can prevent leases from updating + * Improves the 3-debootstrap.py provisioner example script to work with Debian 13+ + ###### [v1.0.2](https://github.com/parallelvirtualcluster/pvc/releases/tag/v1.0.2) * [Worker Daemon] [Bugfix] Fixed a bug in the calling of osd create-db-vg command worker diff --git a/client-cli/pvc/cli/helpers.py b/client-cli/pvc/cli/helpers.py index 22fc169a..331ef817 100644 --- a/client-cli/pvc/cli/helpers.py +++ b/client-cli/pvc/cli/helpers.py @@ -30,7 +30,7 @@ from yaml import load as yload from yaml import SafeLoader -VERSION = "1.0.2" +VERSION = "1.0.3" DEFAULT_STORE_DATA = {"cfgfile": "/etc/pvc/pvc.conf"} DEFAULT_STORE_FILENAME = "pvc.json" diff --git a/client-cli/pyproject.toml b/client-cli/pyproject.toml index b8eea785..c6153f88 100644 --- a/client-cli/pyproject.toml +++ b/client-cli/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pvc" -version = "1.0.2" +version = "1.0.3" dependencies = [ "Click", "PyYAML", diff --git a/debian/changelog b/debian/changelog index a56419ea..21c728d6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +pvc (1.0.3-0) unstable; urgency=high + + * Fixes silent errors in the dnsmasq DHCP lease handler which can prevent leases from updating + * Improves the 3-debootstrap.py provisioner example script to work with Debian 13+ + + -- Joshua M. Boniface Sun, 01 Mar 2026 22:48:49 -0500 + pvc (1.0.2-0) unstable; urgency=high * [Worker Daemon] [Bugfix] Fixed a bug in the calling of osd create-db-vg command worker diff --git a/health-daemon/pvchealthd/Daemon.py b/health-daemon/pvchealthd/Daemon.py index 7146d13c..144779a3 100644 --- a/health-daemon/pvchealthd/Daemon.py +++ b/health-daemon/pvchealthd/Daemon.py @@ -33,7 +33,7 @@ import os import signal # Daemon version -version = "1.0.2" +version = "1.0.3" ########################################################## diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 6f4bd4c5..783b4edf 100644 --- a/node-daemon/pvcnoded/Daemon.py +++ b/node-daemon/pvcnoded/Daemon.py @@ -49,7 +49,7 @@ import re import json # Daemon version -version = "1.0.2" +version = "1.0.3" ########################################################## diff --git a/worker-daemon/pvcworkerd/Daemon.py b/worker-daemon/pvcworkerd/Daemon.py index 8e5ee84b..01f1729c 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 = "1.0.2" +version = "1.0.3" config = cfg.get_configuration()