Bump version to 0.9.89
This commit is contained in:
parent
aac306c55b
commit
e9b6072fa0
|
@ -1,5 +1,10 @@
|
|||
## PVC Changelog
|
||||
|
||||
###### [v0.9.89](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.89)
|
||||
|
||||
* [API/Worker Daemons] Fixes a bug with the Celery result backends not being properly initialized on Debian 10/11.
|
||||
* [API Daemon] Fixes a bug if VM CPU stats are missing on Debian 10.
|
||||
|
||||
###### [v0.9.88](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.88)
|
||||
|
||||
* [API Daemon] Adds an additional Prometheus metrics proxy for Zookeeper stats.
|
||||
|
|
|
@ -27,7 +27,7 @@ from distutils.util import strtobool as dustrtobool
|
|||
import daemon_lib.config as cfg
|
||||
|
||||
# Daemon version
|
||||
version = "0.9.88"
|
||||
version = "0.9.89"
|
||||
|
||||
# API version
|
||||
API_VERSION = 1.0
|
||||
|
|
|
@ -2,7 +2,7 @@ from setuptools import setup
|
|||
|
||||
setup(
|
||||
name="pvc",
|
||||
version="0.9.88",
|
||||
version="0.9.89",
|
||||
packages=["pvc.cli", "pvc.lib"],
|
||||
install_requires=[
|
||||
"Click",
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
pvc (0.9.89-0) unstable; urgency=high
|
||||
|
||||
* [API/Worker Daemons] Fixes a bug with the Celery result backends not being properly initialized on Debian 10/11.
|
||||
* [API Daemon] Fixes a bug if VM CPU stats are missing on Debian 10.
|
||||
|
||||
-- Joshua M. Boniface <joshua@boniface.me> Tue, 09 Jan 2024 12:15:53 -0500
|
||||
|
||||
pvc (0.9.88-0) unstable; urgency=high
|
||||
|
||||
* [API Daemon] Adds an additional Prometheus metrics proxy for Zookeeper stats.
|
||||
|
|
|
@ -33,7 +33,7 @@ import os
|
|||
import signal
|
||||
|
||||
# Daemon version
|
||||
version = "0.9.88"
|
||||
version = "0.9.89"
|
||||
|
||||
|
||||
##########################################################
|
||||
|
|
|
@ -49,7 +49,7 @@ import re
|
|||
import json
|
||||
|
||||
# Daemon version
|
||||
version = "0.9.88"
|
||||
version = "0.9.89"
|
||||
|
||||
|
||||
##########################################################
|
||||
|
|
|
@ -44,7 +44,7 @@ from daemon_lib.vmbuilder import (
|
|||
)
|
||||
|
||||
# Daemon version
|
||||
version = "0.9.88"
|
||||
version = "0.9.89"
|
||||
|
||||
|
||||
config = cfg.get_configuration()
|
||||
|
|
Loading…
Reference in New Issue