From 11702f4bc8d28ce867308ee392de41ddb8895110 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sun, 8 Nov 2020 02:03:29 -0500 Subject: [PATCH] Bump version to 0.9.2 --- README.md | 7 +++++++ debian/changelog | 9 +++++++++ docs/index.md | 7 +++++++ node-daemon/pvcnoded/Daemon.py | 2 +- 4 files changed, 24 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d2ce623e..42875690 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,13 @@ To get started with PVC, read the [Cluster Architecture document](https://parall ## Changelog +#### v0.9.2 + + * Major linting of the codebase with flake8; adds linting tools + * Implements CLI-based modification of VM vCPUs, memory, networks, and disks without directly editing XML + * Fixes bug where `pvc vm log -f` would show all 1000 lines before starting + * Fixes bug in default provisioner libvirt schema (`drive` -> `driver` typo) + #### v0.9.1 * Added per-VM migration method feature diff --git a/debian/changelog b/debian/changelog index 5f219f2b..94f69894 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +pvc (0.9.2-0) unstable urgency=high + + * Major linting of the codebase with flake8; adds linting tools + * Implements CLI-based modification of VM vCPUs, memory, networks, and disks without directly editing XML + * Fixes bug where `pvc vm log -f` would show all 1000 lines before starting + * Fixes bug in default provisioner libvirt schema (`drive` -> `driver` typo) + + -- Joshua M. Boniface Sun, 08 Nov 2020 02:03:29 -0500 + pvc (0.9.1-0) unstable; urgency=high * Added per-VM migration method feature diff --git a/docs/index.md b/docs/index.md index 033b45fa..7d5870b2 100644 --- a/docs/index.md +++ b/docs/index.md @@ -19,6 +19,13 @@ To get started with PVC, read the [Cluster Architecture document](https://parall ## Changelog +#### v0.9.2 + + * Major linting of the codebase with flake8; adds linting tools + * Implements CLI-based modification of VM vCPUs, memory, networks, and disks without directly editing XML + * Fixes bug where `pvc vm log -f` would show all 1000 lines before starting + * Fixes bug in default provisioner libvirt schema (`drive` -> `driver` typo) + #### v0.9.1 * Added per-VM migration method feature diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 91a956cc..d2502d19 100644 --- a/node-daemon/pvcnoded/Daemon.py +++ b/node-daemon/pvcnoded/Daemon.py @@ -54,7 +54,7 @@ import pvcnoded.CephInstance as CephInstance import pvcnoded.MetadataAPIInstance as MetadataAPIInstance # Version string for startup output -version = '0.9.1' +version = '0.9.2' ############################################################################### # PVCD - node daemon startup program