Bump version to 0.9.34
This commit is contained in:
parent
722fd0a65d
commit
e9735113af
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -48,7 +48,7 @@ import re
|
|||
import json
|
||||
|
||||
# Daemon version
|
||||
version = '0.9.33'
|
||||
version = '0.9.34'
|
||||
|
||||
|
||||
##########################################################
|
||||
|
|
Loading…
Reference in New Issue