Bump version to 0.9.41

This commit is contained in:
Joshua Boniface 2021-10-09 19:39:21 -04:00
parent 2f01edca14
commit d1f2ce0b0a
6 changed files with 16 additions and 4 deletions

View File

@ -1 +1 @@
0.9.40 0.9.41

View File

@ -1,5 +1,10 @@
## PVC Changelog ## PVC Changelog
###### [v0.9.41](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.41)
* Fixes a bad conditional check in IPMI verification
* Implements per-network MTU configuration; NOTE: Requires new keys in pvcnoded.yaml (`bridge_mtu`) and Ansible group_vars (`pvc_bridge_mtu`)
###### [v0.9.40](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.40) ###### [v0.9.40](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.40)
* [Docs] Documentation updates for new Changelog file * [Docs] Documentation updates for new Changelog file

View File

@ -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.40' version = '0.9.41'
# API version # API version
API_VERSION = 1.0 API_VERSION = 1.0

View File

@ -2,7 +2,7 @@ from setuptools import setup
setup( setup(
name='pvc', name='pvc',
version='0.9.40', version='0.9.41',
packages=['pvc', 'pvc.cli_lib'], packages=['pvc', 'pvc.cli_lib'],
install_requires=[ install_requires=[
'Click', 'Click',

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
pvc (0.9.41-0) unstable; urgency=high
* Fixes a bad conditional check in IPMI verification
* Implements per-network MTU configuration; NOTE: Requires new keys in pvcnoded.yaml (`bridge_mtu`) and Ansible group_vars (`pvc_bridge_mtu`)
-- Joshua M. Boniface <joshua@boniface.me> Sat, 09 Oct 2021 19:39:21 -0400
pvc (0.9.40-0) unstable; urgency=high pvc (0.9.40-0) unstable; urgency=high
* [Docs] Documentation updates for new Changelog file * [Docs] Documentation updates for new Changelog file

View File

@ -48,7 +48,7 @@ import re
import json import json
# Daemon version # Daemon version
version = '0.9.40' version = '0.9.41'
########################################################## ##########################################################