From c27359c4bf030cdfb0ba6aa9df4a3b508528758c Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Thu, 7 Oct 2021 14:42:04 -0400 Subject: [PATCH] Bump version to 0.9.40 --- .version | 2 +- CHANGELOG.md | 5 +++++ api-daemon/pvcapid/Daemon.py | 2 +- client-cli/setup.py | 2 +- debian/changelog | 7 +++++++ node-daemon/pvcnoded/Daemon.py | 2 +- 6 files changed, 16 insertions(+), 4 deletions(-) diff --git a/.version b/.version index 9e283c5b..f81283f3 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.39 +0.9.40 diff --git a/CHANGELOG.md b/CHANGELOG.md index 693b8188..ca6ed659 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## PVC Changelog +###### [v0.9.40](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.40) + + * [Docs] Documentation updates for new Changelog file + * [Node Daemon] Fixes bug with schema updates + ###### [v0.9.39](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.39) * [Documentation] Update several documentation sections diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 1206f7d0..375a7601 100755 --- a/api-daemon/pvcapid/Daemon.py +++ b/api-daemon/pvcapid/Daemon.py @@ -25,7 +25,7 @@ import yaml from distutils.util import strtobool as dustrtobool # Daemon version -version = '0.9.39' +version = '0.9.40' # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 16b5b557..a2360f82 100644 --- a/client-cli/setup.py +++ b/client-cli/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='pvc', - version='0.9.39', + version='0.9.40', packages=['pvc', 'pvc.cli_lib'], install_requires=[ 'Click', diff --git a/debian/changelog b/debian/changelog index c66314e4..4b9aee5d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +pvc (0.9.40-0) unstable; urgency=high + + * [Docs] Documentation updates for new Changelog file + * [Node Daemon] Fixes bug with schema updates + + -- Joshua M. Boniface Thu, 07 Oct 2021 14:42:04 -0400 + pvc (0.9.39-0) unstable; urgency=high * [Documentation] Update several documentation sections diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 8ee732a0..0b6d8a5e 100644 --- a/node-daemon/pvcnoded/Daemon.py +++ b/node-daemon/pvcnoded/Daemon.py @@ -48,7 +48,7 @@ import re import json # Daemon version -version = '0.9.39' +version = '0.9.40' ##########################################################