Bump version to 0.9.15

This commit is contained in:
Joshua Boniface 2021-04-08 13:37:47 -04:00
parent 629cf62385
commit 669338c22b
5 changed files with 22 additions and 2 deletions

View File

@ -20,6 +20,12 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r
## Changelog
#### v0.9.15
* [CLI] Adds additional verification (--yes) to several VM management commands
* [CLI] Adds a method to override --yes/confirmation requirements via envvar (PVC_UNSAFE)
* [CLI] Adds description fields to PVC clusters in CLI
#### v0.9.14
* Fixes bugs around cloned volume provisioning

View File

@ -26,7 +26,7 @@ import pvcapid.flaskapi as pvc_api
##########################################################
# Version string for startup output
version = '0.9.14'
version = '0.9.15'
if pvc_api.config['ssl_enabled']:
context = (pvc_api.config['ssl_cert_file'], pvc_api.config['ssl_key_file'])

8
debian/changelog vendored
View File

@ -1,3 +1,11 @@
pvc (0.9.15-0) unstable; urgency=high
* [CLI] Adds additional verification (--yes) to several VM management commands
* [CLI] Adds a method to override --yes/confirmation requirements via envvar (PVC_UNSAFE)
* [CLI] Adds description fields to PVC clusters in CLI
-- Joshua M. Boniface <joshua@boniface.me> Thu, 08 Apr 2021 13:37:47 -0400
pvc (0.9.14-0) unstable; urgency=high
* Fixes bugs around cloned volume provisioning

View File

@ -18,6 +18,12 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r
## Changelog
#### v0.9.15
* [CLI] Adds additional verification (--yes) to several VM management commands
* [CLI] Adds a method to override --yes/confirmation requirements via envvar (PVC_UNSAFE)
* [CLI] Adds description fields to PVC clusters in CLI
#### v0.9.14
* Fixes bugs around cloned volume provisioning

View File

@ -53,7 +53,7 @@ import pvcnoded.CephInstance as CephInstance
import pvcnoded.MetadataAPIInstance as MetadataAPIInstance
# Version string for startup output
version = '0.9.14'
version = '0.9.15'
###############################################################################
# PVCD - node daemon startup program