Bump version to 0.9.103
This commit is contained in:
parent
b16542c8fc
commit
9441cb3b2e
|
@ -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
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -33,7 +33,7 @@ import os
|
|||
import signal
|
||||
|
||||
# Daemon version
|
||||
version = "0.9.102"
|
||||
version = "0.9.103"
|
||||
|
||||
|
||||
##########################################################
|
||||
|
|
|
@ -49,7 +49,7 @@ import re
|
|||
import json
|
||||
|
||||
# Daemon version
|
||||
version = "0.9.102"
|
||||
version = "0.9.103"
|
||||
|
||||
|
||||
##########################################################
|
||||
|
|
|
@ -55,7 +55,7 @@ from daemon_lib.autobackup import (
|
|||
)
|
||||
|
||||
# Daemon version
|
||||
version = "0.9.102"
|
||||
version = "0.9.103"
|
||||
|
||||
|
||||
config = cfg.get_configuration()
|
||||
|
|
Loading…
Reference in New Issue