diff --git a/.version b/.version index 7dea76ed..6d7de6e6 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -1.0.1 +1.0.2 diff --git a/CHANGELOG.md b/CHANGELOG.md index 64386035..fd4531ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## PVC Changelog +###### [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 + ###### [v1.0.1](https://github.com/parallelvirtualcluster/pvc/releases/tag/v1.0.1) * [CLI Client] [Bugfix] Fix bug with DELETE endpoints returning invalid data diff --git a/client-cli/pvc/cli/helpers.py b/client-cli/pvc/cli/helpers.py index b7f201d6..22fc169a 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.1" +VERSION = "1.0.2" 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 59b46a9c..b8eea785 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.1" +version = "1.0.2" dependencies = [ "Click", "PyYAML", diff --git a/debian/changelog b/debian/changelog index 498c0ba8..a56419ea 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pvc (1.0.2-0) unstable; urgency=high + + * [Worker Daemon] [Bugfix] Fixed a bug in the calling of osd create-db-vg command worker + + -- Joshua M. Boniface Fri, 30 Jan 2026 09:58:00 -0500 + pvc (1.0.1-0) unstable; urgency=high * [CLI Client] [Bugfix] Fix bug with DELETE endpoints returning invalid data diff --git a/health-daemon/pvchealthd/Daemon.py b/health-daemon/pvchealthd/Daemon.py index fde85655..7146d13c 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.1" +version = "1.0.2" ########################################################## diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 8aa568c9..6f4bd4c5 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.1" +version = "1.0.2" ########################################################## diff --git a/worker-daemon/pvcworkerd/Daemon.py b/worker-daemon/pvcworkerd/Daemon.py index 42820e9d..8e5ee84b 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.1" +version = "1.0.2" config = cfg.get_configuration()