Bump version to 0.9.20
This commit is contained in:
parent
ef1701b4c8
commit
d2bcfe5cf7
|
@ -20,6 +20,15 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r
|
||||||
|
|
||||||
## Changelog
|
## 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
|
#### v0.9.19
|
||||||
|
|
||||||
* [CLI] Corrects some flawed conditionals
|
* [CLI] Corrects some flawed conditionals
|
||||||
|
|
|
@ -25,7 +25,7 @@ import yaml
|
||||||
from distutils.util import strtobool as dustrtobool
|
from distutils.util import strtobool as dustrtobool
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = '0.9.19'
|
version = '0.9.20'
|
||||||
|
|
||||||
# API version
|
# API version
|
||||||
API_VERSION = 1.0
|
API_VERSION = 1.0
|
||||||
|
|
|
@ -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 <joshua@boniface.me> Mon, 14 Jun 2021 18:06:27 -0400
|
||||||
|
|
||||||
pvc (0.9.19-0) unstable; urgency=high
|
pvc (0.9.19-0) unstable; urgency=high
|
||||||
|
|
||||||
* [CLI] Corrects some flawed conditionals
|
* [CLI] Corrects some flawed conditionals
|
||||||
|
|
|
@ -18,6 +18,15 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r
|
||||||
|
|
||||||
## Changelog
|
## 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
|
#### v0.9.19
|
||||||
|
|
||||||
* [CLI] Corrects some flawed conditionals
|
* [CLI] Corrects some flawed conditionals
|
||||||
|
|
|
@ -54,7 +54,7 @@ import pvcnoded.CephInstance as CephInstance
|
||||||
import pvcnoded.MetadataAPIInstance as MetadataAPIInstance
|
import pvcnoded.MetadataAPIInstance as MetadataAPIInstance
|
||||||
|
|
||||||
# Version string for startup output
|
# Version string for startup output
|
||||||
version = '0.9.19'
|
version = '0.9.20'
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# PVCD - node daemon startup program
|
# PVCD - node daemon startup program
|
||||||
|
|
Loading…
Reference in New Issue