Bump version to 0.9.34

This commit is contained in:
Joshua Boniface 2021-08-24 16:15:25 -04:00
parent eb321497ee
commit 694b8e85a0
7 changed files with 24 additions and 4 deletions

View File

@ -1 +1 @@
0.9.33
0.9.34

View File

@ -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

View File

@ -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

View File

@ -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',

8
debian/changelog vendored
View File

@ -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 <joshua@boniface.me> 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

View File

@ -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

View File

@ -48,7 +48,7 @@ import re
import json
# Daemon version
version = '0.9.33'
version = '0.9.34'
##########################################################