Bump version to 0.9.103

This commit is contained in:
Joshua Boniface 2024-11-01 17:19:44 -04:00
parent b16542c8fc
commit 9441cb3b2e
7 changed files with 17 additions and 5 deletions

View File

@ -1 +1 @@
0.9.102
0.9.103

View File

@ -1,5 +1,10 @@
## PVC Changelog
###### [v0.9.103](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.103)
* [Provisioner] Fixes a bug with the change in `storage_hosts` to FQDNs affecting the VM Builder
* [Monitoring] Fixes the Munin plugin to work properly with sudo
###### [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

View File

@ -2,7 +2,7 @@ from setuptools import setup
setup(
name="pvc",
version="0.9.102",
version="0.9.103",
packages=["pvc.cli", "pvc.lib"],
install_requires=[
"Click",

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
pvc (0.9.103-0) unstable; urgency=high
* [Provisioner] Fixes a bug with the change in `storage_hosts` to FQDNs affecting the VM Builder
* [Monitoring] Fixes the Munin plugin to work properly with sudo
-- Joshua M. Boniface <joshua@boniface.me> Fri, 01 Nov 2024 17:19:44 -0400
pvc (0.9.102-0) unstable; urgency=high
* [API Daemon] Ensures that received config snapshots update storage hosts in addition to secret UUIDs

View File

@ -33,7 +33,7 @@ import os
import signal
# Daemon version
version = "0.9.102"
version = "0.9.103"
##########################################################

View File

@ -49,7 +49,7 @@ import re
import json
# Daemon version
version = "0.9.102"
version = "0.9.103"
##########################################################

View File

@ -55,7 +55,7 @@ from daemon_lib.autobackup import (
)
# Daemon version
version = "0.9.102"
version = "0.9.103"
config = cfg.get_configuration()