diff --git a/.version b/.version index d3827e75..7dea76ed 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -1.0 +1.0.1 diff --git a/CHANGELOG.md b/CHANGELOG.md index 80b5ace1..64386035 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## PVC Changelog +###### [v1.0.1](https://github.com/parallelvirtualcluster/pvc/releases/tag/v1.0.1) + + * [CLI Client] [Bugfix] Fix bug with DELETE endpoints returning invalid data + ###### [v1.0](https://github.com/parallelvirtualcluster/pvc/releases/tag/v1.0) **Announcement**: We are pleased to announce PVC 1.0! Functionally speaking, there are only a few minor improvements over the previous 0.9.107, but I believe it's finally time to call this a "1.0" release. Recently I have had much less opportunity to work on PVC as I would like, so some features are still not quite there, but those can arrive in future versions over time. diff --git a/client-cli/pvc/cli/helpers.py b/client-cli/pvc/cli/helpers.py index 0cbb8576..b7f201d6 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" +VERSION = "1.0.1" 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 6973fd9b..59b46a9c 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" +version = "1.0.1" dependencies = [ "Click", "PyYAML", diff --git a/debian/changelog b/debian/changelog index aae1cb3e..498c0ba8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pvc (1.0.1-0) unstable; urgency=high + + * [CLI Client] [Bugfix] Fix bug with DELETE endpoints returning invalid data + + -- Joshua M. Boniface Sat, 21 Jun 2025 12:40:33 -0400 + pvc (1.0-0) unstable; urgency=high **Announcement**: We are pleased to announce PVC 1.0! Functionally speaking, there are only a few minor improvements over the previous 0.9.107, but I believe it's finally time to call this a "1.0" release. Recently I have had much less opportunity to work on PVC as I would like, so some features are still not quite there, but those can arrive in future versions over time. diff --git a/health-daemon/pvchealthd/Daemon.py b/health-daemon/pvchealthd/Daemon.py index f56ee3d3..fde85655 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" +version = "1.0.1" ########################################################## diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 58134b2d..8aa568c9 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" +version = "1.0.1" ########################################################## diff --git a/worker-daemon/pvcworkerd/Daemon.py b/worker-daemon/pvcworkerd/Daemon.py index 6ef753df..42820e9d 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" +version = "1.0.1" config = cfg.get_configuration()