Bump version to 0.9.92
This commit is contained in:
parent
db4f0881a2
commit
df40b779af
|
@ -1,5 +1,13 @@
|
||||||
## PVC Changelog
|
## PVC Changelog
|
||||||
|
|
||||||
|
###### [v0.9.92](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.92)
|
||||||
|
|
||||||
|
* [CLI Client] Adds the new restore state to the colours list for VM status
|
||||||
|
* [API Daemon] Fixes an incorrect variable assignment
|
||||||
|
* [Provisioner] Improves the error handling of various steps in the debootstrap and rinse example scripts
|
||||||
|
* [CLI Client] Fixes two bugs around missing keys that were added recently (uses get() instead direct dictionary refs)
|
||||||
|
* [CLI Client] Improves API error handling via GET retries (x3) and better server status code handling
|
||||||
|
|
||||||
###### [v0.9.91](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.91)
|
###### [v0.9.91](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.91)
|
||||||
|
|
||||||
* [Client CLI] Fixes a bug and improves output during cluster task events.
|
* [Client CLI] Fixes a bug and improves output during cluster task events.
|
||||||
|
|
|
@ -27,7 +27,7 @@ from distutils.util import strtobool as dustrtobool
|
||||||
import daemon_lib.config as cfg
|
import daemon_lib.config as cfg
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = "0.9.91"
|
version = "0.9.92"
|
||||||
|
|
||||||
# API version
|
# API version
|
||||||
API_VERSION = 1.0
|
API_VERSION = 1.0
|
||||||
|
|
|
@ -2,7 +2,7 @@ from setuptools import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="pvc",
|
name="pvc",
|
||||||
version="0.9.91",
|
version="0.9.92",
|
||||||
packages=["pvc.cli", "pvc.lib"],
|
packages=["pvc.cli", "pvc.lib"],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"Click",
|
"Click",
|
||||||
|
|
|
@ -1,3 +1,13 @@
|
||||||
|
pvc (0.9.92-0) unstable; urgency=high
|
||||||
|
|
||||||
|
* [CLI Client] Adds the new restore state to the colours list for VM status
|
||||||
|
* [API Daemon] Fixes an incorrect variable assignment
|
||||||
|
* [Provisioner] Improves the error handling of various steps in the debootstrap and rinse example scripts
|
||||||
|
* [CLI Client] Fixes two bugs around missing keys that were added recently (uses get() instead direct dictionary refs)
|
||||||
|
* [CLI Client] Improves API error handling via GET retries (x3) and better server status code handling
|
||||||
|
|
||||||
|
-- Joshua M. Boniface <joshua@boniface.me> Mon, 29 Jan 2024 09:39:10 -0500
|
||||||
|
|
||||||
pvc (0.9.91-0) unstable; urgency=high
|
pvc (0.9.91-0) unstable; urgency=high
|
||||||
|
|
||||||
* [Client CLI] Fixes a bug and improves output during cluster task events.
|
* [Client CLI] Fixes a bug and improves output during cluster task events.
|
||||||
|
|
|
@ -33,7 +33,7 @@ import os
|
||||||
import signal
|
import signal
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = "0.9.91"
|
version = "0.9.92"
|
||||||
|
|
||||||
|
|
||||||
##########################################################
|
##########################################################
|
||||||
|
|
|
@ -49,7 +49,7 @@ import re
|
||||||
import json
|
import json
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = "0.9.91"
|
version = "0.9.92"
|
||||||
|
|
||||||
|
|
||||||
##########################################################
|
##########################################################
|
||||||
|
|
|
@ -44,7 +44,7 @@ from daemon_lib.vmbuilder import (
|
||||||
)
|
)
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = "0.9.91"
|
version = "0.9.92"
|
||||||
|
|
||||||
|
|
||||||
config = cfg.get_configuration()
|
config = cfg.get_configuration()
|
||||||
|
|
Loading…
Reference in New Issue