Bump version to 0.9.18
This commit is contained in:
parent
f46c2e7f6a
commit
0c75a127b2
|
@ -20,6 +20,10 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r
|
|||
|
||||
## Changelog
|
||||
|
||||
#### v0.9.18
|
||||
|
||||
* Adds VM rename functionality to API and CLI client
|
||||
|
||||
#### v0.9.17
|
||||
|
||||
* [CLI] Fixes bugs in log follow output
|
||||
|
|
|
@ -26,7 +26,7 @@ import pvcapid.flaskapi as pvc_api
|
|||
##########################################################
|
||||
|
||||
# Version string for startup output
|
||||
version = '0.9.17'
|
||||
version = '0.9.18'
|
||||
|
||||
if pvc_api.config['ssl_enabled']:
|
||||
context = (pvc_api.config['ssl_cert_file'], pvc_api.config['ssl_key_file'])
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
pvc (0.9.18-0) unstable; urgency=high
|
||||
|
||||
* Adds VM rename functionality to API and CLI client
|
||||
|
||||
-- Joshua M. Boniface <joshua@boniface.me> Sun, 23 May 2021 17:23:10 -0400
|
||||
|
||||
pvc (0.9.17-0) unstable; urgency=high
|
||||
|
||||
* [CLI] Fixes bugs in log follow output
|
||||
|
|
|
@ -18,6 +18,10 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r
|
|||
|
||||
## Changelog
|
||||
|
||||
#### v0.9.18
|
||||
|
||||
* Adds VM rename functionality to API and CLI client
|
||||
|
||||
#### v0.9.17
|
||||
|
||||
* [CLI] Fixes bugs in log follow output
|
||||
|
|
|
@ -53,7 +53,7 @@ import pvcnoded.CephInstance as CephInstance
|
|||
import pvcnoded.MetadataAPIInstance as MetadataAPIInstance
|
||||
|
||||
# Version string for startup output
|
||||
version = '0.9.17'
|
||||
version = '0.9.18'
|
||||
|
||||
###############################################################################
|
||||
# PVCD - node daemon startup program
|
||||
|
|
Loading…
Reference in New Issue