diff --git a/.version b/.version index 2e665126..1b7b4355 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.33 +0.9.34 diff --git a/README.md b/README.md index 69e252b2..877c2549 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,12 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl ## Changelog +#### v0.9.34 + + * [Provisioner] Adds support for filesystem arguments containing = + * [CLI Client] Fixes bug with pvc provisioner status output formatting + * [Node Daemon] Fixes minor typo in startup message + #### v0.9.33 * [Node Daemon] A major refactoring of the node daemon diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index c423a4bd..9bdf7d25 100755 --- a/api-daemon/pvcapid/Daemon.py +++ b/api-daemon/pvcapid/Daemon.py @@ -25,7 +25,7 @@ import yaml from distutils.util import strtobool as dustrtobool # Daemon version -version = '0.9.33' +version = '0.9.34' # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 4f5a922d..d600cedd 100644 --- a/client-cli/setup.py +++ b/client-cli/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='pvc', - version='0.9.33', + version='0.9.34', packages=['pvc', 'pvc.cli_lib'], install_requires=[ 'Click', diff --git a/debian/changelog b/debian/changelog index c39bc60e..ef45e60f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +pvc (0.9.34-0) unstable; urgency=high + + * [Provisioner] Adds support for filesystem arguments containing = + * [CLI Client] Fixes bug with pvc provisioner status output formatting + * [Node Daemon] Fixes minor typo in startup message + + -- Joshua M. Boniface Tue, 24 Aug 2021 16:15:25 -0400 + pvc (0.9.33-0) unstable; urgency=high * [Node Daemon] A major refactoring of the node daemon diff --git a/docs/index.md b/docs/index.md index 027c2534..ced31d1f 100644 --- a/docs/index.md +++ b/docs/index.md @@ -55,6 +55,12 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl ## Changelog +#### v0.9.34 + + * [Provisioner] Adds support for filesystem arguments containing = + * [CLI Client] Fixes bug with pvc provisioner status output formatting + * [Node Daemon] Fixes minor typo in startup message + #### v0.9.33 * [Node Daemon] A major refactoring of the node daemon diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index b260d204..fbd4d8c4 100644 --- a/node-daemon/pvcnoded/Daemon.py +++ b/node-daemon/pvcnoded/Daemon.py @@ -48,7 +48,7 @@ import re import json # Daemon version -version = '0.9.33' +version = '0.9.34' ##########################################################