Bump version to 0.9.75
This commit is contained in:
parent
714d4b6005
commit
f46bfc962f
|
@ -1,5 +1,11 @@
|
||||||
## PVC Changelog
|
## PVC Changelog
|
||||||
|
|
||||||
|
###### [v0.9.75](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.75)
|
||||||
|
|
||||||
|
* [Node Daemon] Adds a startup message about IPMI when succeeding
|
||||||
|
* [Node Daemon] Fixes a bug in fencing allowing non-failing VMs to migrate
|
||||||
|
* [Node Daemon] Adds rounding to load average in load plugin for consistency
|
||||||
|
|
||||||
###### [v0.9.74](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.74)
|
###### [v0.9.74](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.74)
|
||||||
|
|
||||||
* [Docs] Removes docs from the main repo
|
* [Docs] Removes docs from the main repo
|
||||||
|
|
|
@ -27,7 +27,7 @@ from ssl import SSLContext, TLSVersion
|
||||||
from distutils.util import strtobool as dustrtobool
|
from distutils.util import strtobool as dustrtobool
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = "0.9.74"
|
version = "0.9.75"
|
||||||
|
|
||||||
# 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.74",
|
version="0.9.75",
|
||||||
packages=["pvc.cli", "pvc.lib"],
|
packages=["pvc.cli", "pvc.lib"],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"Click",
|
"Click",
|
||||||
|
|
|
@ -1,3 +1,11 @@
|
||||||
|
pvc (0.9.75-0) unstable; urgency=high
|
||||||
|
|
||||||
|
* [Node Daemon] Adds a startup message about IPMI when succeeding
|
||||||
|
* [Node Daemon] Fixes a bug in fencing allowing non-failing VMs to migrate
|
||||||
|
* [Node Daemon] Adds rounding to load average in load plugin for consistency
|
||||||
|
|
||||||
|
-- Joshua M. Boniface <joshua@boniface.me> Sat, 16 Sep 2023 23:06:38 -0400
|
||||||
|
|
||||||
pvc (0.9.74-0) unstable; urgency=high
|
pvc (0.9.74-0) unstable; urgency=high
|
||||||
|
|
||||||
* [Docs] Removes docs from the main repo
|
* [Docs] Removes docs from the main repo
|
||||||
|
|
|
@ -49,7 +49,7 @@ import re
|
||||||
import json
|
import json
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = "0.9.74"
|
version = "0.9.75"
|
||||||
|
|
||||||
|
|
||||||
##########################################################
|
##########################################################
|
||||||
|
|
Loading…
Reference in New Issue