diff --git a/README.md b/README.md index f0166cb3..89daa606 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,15 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r ## Changelog +#### v0.9.20 + + * [Daemons] Implemented a Zookeeper schema handler and version 0 schema + * [Daemons] Completes major refactoring of codebase to make use of the schema handler + * [Daemons] Adds support for dynamic chema changges and "hot reloading" of pvcnoded processes + * [Daemons] Adds a functional testing script for verifying operation against a test cluster + * [Daemons, CLI] Fixes several minor bugs found by the above script + * [Daemons, CLI] Add support for Debian 11 "Bullseye" + #### v0.9.19 * [CLI] Corrects some flawed conditionals diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 13b69881..15c6c3d0 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.19' +version = '0.9.20' # API version API_VERSION = 1.0 diff --git a/debian/changelog b/debian/changelog index d03967e5..47d24aca 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,14 @@ +pvc (0.9.20-0) unstable; urgency=high + + * [Daemons] Implemented a Zookeeper schema handler and version 0 schema + * [Daemons] Completes major refactoring of codebase to make use of the schema handler + * [Daemons] Adds support for dynamic chema changges and "hot reloading" of pvcnoded processes + * [Daemons] Adds a functional testing script for verifying operation against a test cluster + * [Daemons, CLI] Fixes several minor bugs found by the above script + * [Daemons, CLI] Add support for Debian 11 "Bullseye" + + -- Joshua M. Boniface Mon, 14 Jun 2021 18:06:27 -0400 + pvc (0.9.19-0) unstable; urgency=high * [CLI] Corrects some flawed conditionals diff --git a/docs/index.md b/docs/index.md index a5ae0cb1..3c0d66ee 100644 --- a/docs/index.md +++ b/docs/index.md @@ -18,6 +18,15 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r ## Changelog +#### v0.9.20 + + * [Daemons] Implemented a Zookeeper schema handler and version 0 schema + * [Daemons] Completes major refactoring of codebase to make use of the schema handler + * [Daemons] Adds support for dynamic chema changges and "hot reloading" of pvcnoded processes + * [Daemons] Adds a functional testing script for verifying operation against a test cluster + * [Daemons, CLI] Fixes several minor bugs found by the above script + * [Daemons, CLI] Add support for Debian 11 "Bullseye" + #### v0.9.19 * [CLI] Corrects some flawed conditionals diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index f6ed01b9..a0f2cfc4 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.19' +version = '0.9.20' ############################################################################### # PVCD - node daemon startup program