Bump version to 0.9.34
This commit is contained in:
parent
eb321497ee
commit
694b8e85a0
|
@ -55,6 +55,12 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl
|
||||||
|
|
||||||
## Changelog
|
## 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
|
#### v0.9.33
|
||||||
|
|
||||||
* [Node Daemon] A major refactoring of the node daemon
|
* [Node Daemon] A major refactoring of the node daemon
|
||||||
|
|
|
@ -25,7 +25,7 @@ import yaml
|
||||||
from distutils.util import strtobool as dustrtobool
|
from distutils.util import strtobool as dustrtobool
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = '0.9.33'
|
version = '0.9.34'
|
||||||
|
|
||||||
# API version
|
# API version
|
||||||
API_VERSION = 1.0
|
API_VERSION = 1.0
|
||||||
|
|
|
@ -2,7 +2,7 @@ from setuptools import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='pvc',
|
name='pvc',
|
||||||
version='0.9.33',
|
version='0.9.34',
|
||||||
packages=['pvc', 'pvc.cli_lib'],
|
packages=['pvc', 'pvc.cli_lib'],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'Click',
|
'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
|
pvc (0.9.33-0) unstable; urgency=high
|
||||||
|
|
||||||
* [Node Daemon] A major refactoring of the node daemon
|
* [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
|
## 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
|
#### v0.9.33
|
||||||
|
|
||||||
* [Node Daemon] A major refactoring of the node daemon
|
* [Node Daemon] A major refactoring of the node daemon
|
||||||
|
|
|
@ -48,7 +48,7 @@ import re
|
||||||
import json
|
import json
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = '0.9.33'
|
version = '0.9.34'
|
||||||
|
|
||||||
|
|
||||||
##########################################################
|
##########################################################
|
||||||
|
|
Loading…
Reference in New Issue