diff --git a/.version b/.version index b2160230..ea3f0d7a 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.21 +0.9.22 diff --git a/README.md b/README.md index f667ad88..dbed5c9e 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,19 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r ## Changelog +#### v0.9.22 + + * [API Daemon] Drastically improves performance when getting large lists (e.g. VMs) + * [Daemons] Adds profiler functions for use in debug mode + * [Daemons] Improves reliability of ZK locking + * [Daemons] Adds the new logo in ASCII form to the Daemon startup message + * [Node Daemon] Fixes bug where VMs would sometimes not stop + * [Node Daemon] Code cleanups in various classes + * [Node Daemon] Fixes a bug when reading node schema data + * [All] Adds node PVC version information to the list output + * [CLI Client] Improves the style and formatting of list output including a new header line + * [API Worker] Fixes a bug that prevented the storage benchmark job from running + #### v0.9.21 * [API Daemon] Ensures VMs stop before removing them diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 48698285..4b8b378e 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.21' +version = '0.9.22' # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 90922f95..35a7b6c6 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.21', + version='0.9.22', packages=['pvc', 'pvc.cli_lib'], install_requires=[ 'Click', diff --git a/debian/changelog b/debian/changelog index 482e9dd2..5bdd67d4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,18 @@ +pvc (0.9.22-0) unstable; urgency=high + + * [API Daemon] Drastically improves performance when getting large lists (e.g. VMs) + * [Daemons] Adds profiler functions for use in debug mode + * [Daemons] Improves reliability of ZK locking + * [Daemons] Adds the new logo in ASCII form to the Daemon startup message + * [Node Daemon] Fixes bug where VMs would sometimes not stop + * [Node Daemon] Code cleanups in various classes + * [Node Daemon] Fixes a bug when reading node schema data + * [All] Adds node PVC version information to the list output + * [CLI Client] Improves the style and formatting of list output including a new header line + * [API Worker] Fixes a bug that prevented the storage benchmark job from running + + -- Joshua M. Boniface Mon, 05 Jul 2021 14:18:51 -0400 + pvc (0.9.21-0) unstable; urgency=high * [API Daemon] Ensures VMs stop before removing them diff --git a/docs/index.md b/docs/index.md index a7f6b653..8f79b914 100644 --- a/docs/index.md +++ b/docs/index.md @@ -42,6 +42,19 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r ## Changelog +#### v0.9.22 + + * [API Daemon] Drastically improves performance when getting large lists (e.g. VMs) + * [Daemons] Adds profiler functions for use in debug mode + * [Daemons] Improves reliability of ZK locking + * [Daemons] Adds the new logo in ASCII form to the Daemon startup message + * [Node Daemon] Fixes bug where VMs would sometimes not stop + * [Node Daemon] Code cleanups in various classes + * [Node Daemon] Fixes a bug when reading node schema data + * [All] Adds node PVC version information to the list output + * [CLI Client] Improves the style and formatting of list output including a new header line + * [API Worker] Fixes a bug that prevented the storage benchmark job from running + #### v0.9.21 * [API Daemon] Ensures VMs stop before removing them diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 609c7540..2922c556 100644 --- a/node-daemon/pvcnoded/Daemon.py +++ b/node-daemon/pvcnoded/Daemon.py @@ -55,7 +55,7 @@ import pvcnoded.CephInstance as CephInstance import pvcnoded.MetadataAPIInstance as MetadataAPIInstance # Version string for startup output -version = '0.9.21' +version = '0.9.22' ############################################################################### # PVCD - node daemon startup program