Bump version to 0.9.74
This commit is contained in:
parent
7b230d8bd5
commit
1a906b589e
|
@ -1,5 +1,13 @@
|
|||
## PVC Changelog
|
||||
|
||||
###### [v0.9.74](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.74)
|
||||
|
||||
* [Docs] Removes docs from the main repo
|
||||
* [Client CLI] Ensures that "provision" VMs are shown in the right colour
|
||||
* [Node Daemon] Separates the node monitoring subsystem into its own thread with a longer, customizable update interval
|
||||
* [Node Daemon] Adds checks for PSU input power reundancy (psur) and hardware RAID (hwrd)
|
||||
* [Node Daemon] Updates when Keepalive start messages are printed (end of run, with runtime) to align with new monitoring messages
|
||||
|
||||
###### [v0.9.73](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.73)
|
||||
|
||||
* [Node Daemon] Fixes a bug creating monitoring instance
|
||||
|
|
|
@ -27,7 +27,7 @@ from ssl import SSLContext, TLSVersion
|
|||
from distutils.util import strtobool as dustrtobool
|
||||
|
||||
# Daemon version
|
||||
version = "0.9.73"
|
||||
version = "0.9.74"
|
||||
|
||||
# API version
|
||||
API_VERSION = 1.0
|
||||
|
|
|
@ -2,7 +2,7 @@ from setuptools import setup
|
|||
|
||||
setup(
|
||||
name="pvc",
|
||||
version="0.9.73",
|
||||
version="0.9.74",
|
||||
packages=["pvc.cli", "pvc.lib"],
|
||||
install_requires=[
|
||||
"Click",
|
||||
|
|
|
@ -1,3 +1,13 @@
|
|||
pvc (0.9.74-0) unstable; urgency=high
|
||||
|
||||
* [Docs] Removes docs from the main repo
|
||||
* [Client CLI] Ensures that "provision" VMs are shown in the right colour
|
||||
* [Node Daemon] Separates the node monitoring subsystem into its own thread with a longer, customizable update interval
|
||||
* [Node Daemon] Adds checks for PSU input power reundancy (psur) and hardware RAID (hwrd)
|
||||
* [Node Daemon] Updates when Keepalive start messages are printed (end of run, with runtime) to align with new monitoring messages
|
||||
|
||||
-- Joshua M. Boniface <joshua@boniface.me> Sat, 16 Sep 2023 00:18:13 -0400
|
||||
|
||||
pvc (0.9.73-0) unstable; urgency=high
|
||||
|
||||
* [Node Daemon] Fixes a bug creating monitoring instance
|
||||
|
|
|
@ -49,7 +49,7 @@ import re
|
|||
import json
|
||||
|
||||
# Daemon version
|
||||
version = "0.9.73"
|
||||
version = "0.9.74"
|
||||
|
||||
|
||||
##########################################################
|
||||
|
|
Loading…
Reference in New Issue