Bump version to 0.9.15
This commit is contained in:
parent
629cf62385
commit
669338c22b
|
@ -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
|
||||
|
|
|
@ -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'])
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue