Bump version to 0.9.16

This commit is contained in:
Joshua Boniface 2021-05-10 01:13:21 -04:00
parent b851a6209c
commit fe15bdb854
5 changed files with 28 additions and 2 deletions

View File

@ -20,6 +20,14 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r
## Changelog ## Changelog
#### v0.9.16
* Improves some CLI help messages
* Skips empty local cluster in CLI
* Adjusts how confirmations happen during VM modify restarts
* Fixes bug around corrupted VM log files
* Fixes bug around subprocess pipe exceptions
#### v0.9.15 #### v0.9.15
* [CLI] Adds additional verification (--yes) to several VM management commands * [CLI] Adds additional verification (--yes) to several VM management commands

View File

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

10
debian/changelog vendored
View File

@ -1,3 +1,13 @@
pvc (0.9.16-0) unstable; urgency=high
* Improves some CLI help messages
* Skips empty local cluster in CLI
* Adjusts how confirmations happen during VM modify restarts
* Fixes bug around corrupted VM log files
* Fixes bug around subprocess pipe exceptions
-- Joshua M. Boniface <joshua@boniface.me> Mon, 10 May 2021 01:13:21 -0400
pvc (0.9.15-0) unstable; urgency=high pvc (0.9.15-0) unstable; urgency=high
* [CLI] Adds additional verification (--yes) to several VM management commands * [CLI] Adds additional verification (--yes) to several VM management commands

View File

@ -18,6 +18,14 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r
## Changelog ## Changelog
#### v0.9.16
* Improves some CLI help messages
* Skips empty local cluster in CLI
* Adjusts how confirmations happen during VM modify restarts
* Fixes bug around corrupted VM log files
* Fixes bug around subprocess pipe exceptions
#### v0.9.15 #### v0.9.15
* [CLI] Adds additional verification (--yes) to several VM management commands * [CLI] Adds additional verification (--yes) to several VM management commands

View File

@ -53,7 +53,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.15' version = '0.9.16'
############################################################################### ###############################################################################
# PVCD - node daemon startup program # PVCD - node daemon startup program