Bump version to 0.9.105
This commit is contained in:
parent
e3b8673789
commit
7a32d8da9d
|
@ -1,5 +1,9 @@
|
|||
## PVC Changelog
|
||||
|
||||
###### [v0.9.105](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.105)
|
||||
|
||||
* [API Daemon/Provisioner] Corrects some small bugs with OVA handling
|
||||
|
||||
###### [v0.9.104](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.104)
|
||||
|
||||
* [API Daemon] Fixes a bug that failed uploading of RAW block devices in "storage volume upload"
|
||||
|
|
|
@ -2,7 +2,7 @@ from setuptools import setup
|
|||
|
||||
setup(
|
||||
name="pvc",
|
||||
version="0.9.104",
|
||||
version="0.9.105",
|
||||
packages=["pvc.cli", "pvc.lib"],
|
||||
install_requires=[
|
||||
"Click",
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
pvc (0.9.105-0) unstable; urgency=high
|
||||
|
||||
* [API Daemon/Provisioner] Corrects some small bugs with OVA handling
|
||||
|
||||
-- Joshua M. Boniface <joshua@boniface.me> Tue, 19 Nov 2024 14:43:43 -0500
|
||||
|
||||
pvc (0.9.104-0) unstable; urgency=high
|
||||
|
||||
* [API Daemon] Fixes a bug that failed uploading of RAW block devices in "storage volume upload"
|
||||
|
|
|
@ -33,7 +33,7 @@ import os
|
|||
import signal
|
||||
|
||||
# Daemon version
|
||||
version = "0.9.104"
|
||||
version = "0.9.105"
|
||||
|
||||
|
||||
##########################################################
|
||||
|
|
|
@ -49,7 +49,7 @@ import re
|
|||
import json
|
||||
|
||||
# Daemon version
|
||||
version = "0.9.104"
|
||||
version = "0.9.105"
|
||||
|
||||
|
||||
##########################################################
|
||||
|
|
|
@ -58,7 +58,7 @@ from daemon_lib.automirror import (
|
|||
)
|
||||
|
||||
# Daemon version
|
||||
version = "0.9.104"
|
||||
version = "0.9.105"
|
||||
|
||||
|
||||
config = cfg.get_configuration()
|
||||
|
|
Loading…
Reference in New Issue