diff --git a/README.md b/README.md index df24eca1..91448752 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,10 @@ To get started with PVC, read the [Cluster Architecture document](https://parall ## Changelog +#### v0.9.4 + + * Fixes major bug in OVA parser + #### v0.9.3 * Fixes bugs with image & OVA upload parsing diff --git a/debian/changelog b/debian/changelog index e2350a12..0bed3e15 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pvc (0.9.4-0) unstable; urgency=high + + * Fixes major bug in OVA parser + + -- Joshua M. Boniface Tue, 10 Nov 2020 15:33:50 -0500 + pvc (0.9.3-0) unstable; urgency=high * Fixes bugs with image & OVA upload parsing diff --git a/docs/index.md b/docs/index.md index b65a0e66..26752f0d 100644 --- a/docs/index.md +++ b/docs/index.md @@ -19,6 +19,10 @@ To get started with PVC, read the [Cluster Architecture document](https://parall ## Changelog +#### v0.9.4 + + * Fixes major bug in OVA parser + #### v0.9.3 * Fixes bugs with image & OVA upload parsing diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 1e888785..9209273b 100644 --- a/node-daemon/pvcnoded/Daemon.py +++ b/node-daemon/pvcnoded/Daemon.py @@ -54,7 +54,7 @@ import pvcnoded.CephInstance as CephInstance import pvcnoded.MetadataAPIInstance as MetadataAPIInstance # Version string for startup output -version = '0.9.3' +version = '0.9.4' ############################################################################### # PVCD - node daemon startup program