Bump version to 0.9.86
This commit is contained in:
parent
7c9512fb22
commit
0a93f526e0
|
@ -1,5 +1,14 @@
|
||||||
## PVC Changelog
|
## PVC Changelog
|
||||||
|
|
||||||
|
###### [v0.9.86](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.86)
|
||||||
|
|
||||||
|
* [API Daemon] Significantly improves the performance of several commands via async Zookeeper calls and removal of superfluous backend calls.
|
||||||
|
* [Docs] Improves the project README and updates screenshot images to show the current output and more functionality.
|
||||||
|
* [API Daemon/CLI] Corrects some bugs in VM metainformation output.
|
||||||
|
* [Node Daemon] Fixes resource reporting bugs from 0.9.81 and properly clears node resource numbers on a fence.
|
||||||
|
* [Health Daemon] Adds a wait during pvchealthd startup until the node is in run state, to avoid erroneous faults during node bootup.
|
||||||
|
* [API Daemon] Fixes an incorrect reference to legacy pvcapid.yaml file in migration script.
|
||||||
|
|
||||||
###### [v0.9.85](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.85)
|
###### [v0.9.85](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.85)
|
||||||
|
|
||||||
* [Packaging] Fixes a dependency bug introduced in 0.9.84
|
* [Packaging] Fixes a dependency bug introduced in 0.9.84
|
||||||
|
|
|
@ -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.85"
|
version = "0.9.86"
|
||||||
|
|
||||||
# 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.85",
|
version="0.9.86",
|
||||||
packages=["pvc.cli", "pvc.lib"],
|
packages=["pvc.cli", "pvc.lib"],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"Click",
|
"Click",
|
||||||
|
|
|
@ -1,3 +1,14 @@
|
||||||
|
pvc (0.9.86-0) unstable; urgency=high
|
||||||
|
|
||||||
|
* [API Daemon] Significantly improves the performance of several commands via async Zookeeper calls and removal of superfluous backend calls.
|
||||||
|
* [Docs] Improves the project README and updates screenshot images to show the current output and more functionality.
|
||||||
|
* [API Daemon/CLI] Corrects some bugs in VM metainformation output.
|
||||||
|
* [Node Daemon] Fixes resource reporting bugs from 0.9.81 and properly clears node resource numbers on a fence.
|
||||||
|
* [Health Daemon] Adds a wait during pvchealthd startup until the node is in run state, to avoid erroneous faults during node bootup.
|
||||||
|
* [API Daemon] Fixes an incorrect reference to legacy pvcapid.yaml file in migration script.
|
||||||
|
|
||||||
|
-- Joshua M. Boniface <joshua@boniface.me> Thu, 14 Dec 2023 14:46:29 -0500
|
||||||
|
|
||||||
pvc (0.9.85-0) unstable; urgency=high
|
pvc (0.9.85-0) unstable; urgency=high
|
||||||
|
|
||||||
* [Packaging] Fixes a dependency bug introduced in 0.9.84
|
* [Packaging] Fixes a dependency bug introduced in 0.9.84
|
||||||
|
|
|
@ -33,7 +33,7 @@ import os
|
||||||
import signal
|
import signal
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = "0.9.85"
|
version = "0.9.86"
|
||||||
|
|
||||||
|
|
||||||
##########################################################
|
##########################################################
|
||||||
|
|
|
@ -48,7 +48,7 @@ import re
|
||||||
import json
|
import json
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = "0.9.85"
|
version = "0.9.86"
|
||||||
|
|
||||||
|
|
||||||
##########################################################
|
##########################################################
|
||||||
|
|
|
@ -44,7 +44,7 @@ from daemon_lib.vmbuilder import (
|
||||||
)
|
)
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = "0.9.85"
|
version = "0.9.86"
|
||||||
|
|
||||||
|
|
||||||
config = cfg.get_configuration()
|
config = cfg.get_configuration()
|
||||||
|
|
Loading…
Reference in New Issue