Bump version to 0.9.42
This commit is contained in:
parent
b8204d89ac
commit
e88147db4a
|
@ -1,5 +1,12 @@
|
||||||
## PVC Changelog
|
## PVC Changelog
|
||||||
|
|
||||||
|
###### [v0.9.42](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.42)
|
||||||
|
|
||||||
|
* [Documentation] Reworks and updates various documentation sections
|
||||||
|
* [Node Daemon] Adjusts the fencing process to use a power off rather than a power reset for maximum certainty
|
||||||
|
* [Node Daemon] Ensures that MTU values are validated during the first read too
|
||||||
|
* [Node Daemon] Corrects the loading of the bridge_mtu value to use the current active setting rather than a fixed default to prevent unintended surprises
|
||||||
|
|
||||||
###### [v0.9.41](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.41)
|
###### [v0.9.41](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.41)
|
||||||
|
|
||||||
* Fixes a bad conditional check in IPMI verification
|
* Fixes a bad conditional check in IPMI verification
|
||||||
|
|
|
@ -25,7 +25,7 @@ import yaml
|
||||||
from distutils.util import strtobool as dustrtobool
|
from distutils.util import strtobool as dustrtobool
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = '0.9.41'
|
version = '0.9.42'
|
||||||
|
|
||||||
# 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.41',
|
version='0.9.42',
|
||||||
packages=['pvc', 'pvc.cli_lib'],
|
packages=['pvc', 'pvc.cli_lib'],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'Click',
|
'Click',
|
||||||
|
|
|
@ -1,3 +1,12 @@
|
||||||
|
pvc (0.9.42-0) unstable; urgency=high
|
||||||
|
|
||||||
|
* [Documentation] Reworks and updates various documentation sections
|
||||||
|
* [Node Daemon] Adjusts the fencing process to use a power off rather than a power reset for maximum certainty
|
||||||
|
* [Node Daemon] Ensures that MTU values are validated during the first read too
|
||||||
|
* [Node Daemon] Corrects the loading of the bridge_mtu value to use the current active setting rather than a fixed default to prevent unintended surprises
|
||||||
|
|
||||||
|
-- Joshua M. Boniface <joshua@boniface.me> Tue, 12 Oct 2021 13:48:19 -0400
|
||||||
|
|
||||||
pvc (0.9.41-0) unstable; urgency=high
|
pvc (0.9.41-0) unstable; urgency=high
|
||||||
|
|
||||||
* Fixes a bad conditional check in IPMI verification
|
* Fixes a bad conditional check in IPMI verification
|
||||||
|
|
|
@ -48,7 +48,7 @@ import re
|
||||||
import json
|
import json
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = '0.9.41'
|
version = '0.9.42'
|
||||||
|
|
||||||
|
|
||||||
##########################################################
|
##########################################################
|
||||||
|
|
Loading…
Reference in New Issue