From 772807deb3abc9c934924fb6f6f646ea50f88b3a Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Mon, 13 Sep 2021 02:20:46 -0400 Subject: [PATCH] Bump version to 0.9.35 --- .version | 2 +- README.md | 8 ++++++++ api-daemon/pvcapid/Daemon.py | 2 +- client-cli/setup.py | 2 +- debian/changelog | 10 ++++++++++ docs/index.md | 8 ++++++++ node-daemon/pvcnoded/Daemon.py | 2 +- 7 files changed, 30 insertions(+), 4 deletions(-) diff --git a/.version b/.version index 1b7b4355..8e99e294 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.34 +0.9.35 diff --git a/README.md b/README.md index 877c2549..1479698e 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,14 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl ## Changelog +#### v0.9.35 + + * [Node Daemon] Fixes several bugs and crashes in node daemon + * [General] Updates linting rules for newer Flake8 linter + * [Daemons/CLI client] Adds VM network and disk hot attach/detach support; NOTE: Changes the default behaviour of `pvc vm network add`/`remove` and `pvc vm volume add`/`remove` + * [API Daemon] Adds checks for pool size when resizing volumes + * [API Daemon] Adds checks for RAM and vCPU sizes when defining or modifying VMs + #### v0.9.34 * [Provisioner] Adds support for filesystem arguments containing = diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 9bdf7d25..8519385c 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.34' +version = '0.9.35' # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index d600cedd..a93c3c12 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.34', + version='0.9.35', packages=['pvc', 'pvc.cli_lib'], install_requires=[ 'Click', diff --git a/debian/changelog b/debian/changelog index ef45e60f..9022bab8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +pvc (0.9.35-0) unstable; urgency=high + + * [Node Daemon] Fixes several bugs and crashes in node daemon + * [General] Updates linting rules for newer Flake8 linter + * [Daemons/CLI client] Adds VM network and disk hot attach/detach support; NOTE: Changes the default behaviour of `pvc vm network add`/`remove` and `pvc vm volume add`/`remove` + * [API Daemon] Adds checks for pool size when resizing volumes + * [API Daemon] Adds checks for RAM and vCPU sizes when defining or modifying VMs + + -- Joshua M. Boniface Mon, 13 Sep 2021 02:20:46 -0400 + pvc (0.9.34-0) unstable; urgency=high * [Provisioner] Adds support for filesystem arguments containing = diff --git a/docs/index.md b/docs/index.md index ced31d1f..e7649f18 100644 --- a/docs/index.md +++ b/docs/index.md @@ -55,6 +55,14 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl ## Changelog +#### v0.9.35 + + * [Node Daemon] Fixes several bugs and crashes in node daemon + * [General] Updates linting rules for newer Flake8 linter + * [Daemons/CLI client] Adds VM network and disk hot attach/detach support; NOTE: Changes the default behaviour of `pvc vm network add`/`remove` and `pvc vm volume add`/`remove` + * [API Daemon] Adds checks for pool size when resizing volumes + * [API Daemon] Adds checks for RAM and vCPU sizes when defining or modifying VMs + #### v0.9.34 * [Provisioner] Adds support for filesystem arguments containing = diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 53d1dcca..68fd0048 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.34' +version = '0.9.35' ##########################################################