From 560c013e95309e4df98aae7de77382755265a9d3 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sat, 21 Aug 2021 03:28:48 -0400 Subject: [PATCH] Bump version to 0.9.33 --- .version | 2 +- README.md | 6 ++++++ api-daemon/pvcapid/Daemon.py | 2 +- client-cli/setup.py | 2 +- debian/changelog | 8 ++++++++ docs/index.md | 6 ++++++ node-daemon/pvcnoded/Daemon.py | 2 +- 7 files changed, 24 insertions(+), 4 deletions(-) diff --git a/.version b/.version index 1424e647..2e665126 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.32 +0.9.33 diff --git a/README.md b/README.md index a975414b..69e252b2 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,12 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl ## Changelog +#### v0.9.33 + + * [Node Daemon] A major refactoring of the node daemon + * [CLI Client] Fixes output errors if a node has no provisioner data + * [Packages] Fixes issues with including __pycache__ directories in .deb files + #### v0.9.32 * [CLI Client] Fixes some incorrect colours in network lists diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index d9381aec..c423a4bd 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.32' +version = '0.9.33' # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 5e043b01..4f5a922d 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.32', + version='0.9.33', packages=['pvc', 'pvc.cli_lib'], install_requires=[ 'Click', diff --git a/debian/changelog b/debian/changelog index a4a3b9e4..c39bc60e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +pvc (0.9.33-0) unstable; urgency=high + + * [Node Daemon] A major refactoring of the node daemon + * [CLI Client] Fixes output errors if a node has no provisioner data + * [Packages] Fixes issues with including __pycache__ directories in .deb files + + -- Joshua M. Boniface Sat, 21 Aug 2021 03:28:48 -0400 + pvc (0.9.32-0) unstable; urgency=high * [CLI Client] Fixes some incorrect colours in network lists diff --git a/docs/index.md b/docs/index.md index 2b9948d3..027c2534 100644 --- a/docs/index.md +++ b/docs/index.md @@ -55,6 +55,12 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl ## Changelog +#### v0.9.33 + + * [Node Daemon] A major refactoring of the node daemon + * [CLI Client] Fixes output errors if a node has no provisioner data + * [Packages] Fixes issues with including __pycache__ directories in .deb files + #### v0.9.32 * [CLI Client] Fixes some incorrect colours in network lists diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index baf9def6..b260d204 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.32' +version = '0.9.33' ##########################################################