Bump version to 0.9.33
This commit is contained in:
parent
384c6320ef
commit
560c013e95
|
@ -55,6 +55,12 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl
|
|||
|
||||
## Changelog
|
||||
|
||||
#### v0.9.33
|
||||
|
||||
* [Node Daemon] A major refactoring of the node daemon
|
||||
* [CLI Client] Fixes output errors if a node has no provisioner data
|
||||
* [Packages] Fixes issues with including __pycache__ directories in .deb files
|
||||
|
||||
#### v0.9.32
|
||||
|
||||
* [CLI Client] Fixes some incorrect colours in network lists
|
||||
|
|
|
@ -25,7 +25,7 @@ import yaml
|
|||
from distutils.util import strtobool as dustrtobool
|
||||
|
||||
# Daemon version
|
||||
version = '0.9.32'
|
||||
version = '0.9.33'
|
||||
|
||||
# API version
|
||||
API_VERSION = 1.0
|
||||
|
|
|
@ -2,7 +2,7 @@ from setuptools import setup
|
|||
|
||||
setup(
|
||||
name='pvc',
|
||||
version='0.9.32',
|
||||
version='0.9.33',
|
||||
packages=['pvc', 'pvc.cli_lib'],
|
||||
install_requires=[
|
||||
'Click',
|
||||
|
|
|
@ -1,3 +1,11 @@
|
|||
pvc (0.9.33-0) unstable; urgency=high
|
||||
|
||||
* [Node Daemon] A major refactoring of the node daemon
|
||||
* [CLI Client] Fixes output errors if a node has no provisioner data
|
||||
* [Packages] Fixes issues with including __pycache__ directories in .deb files
|
||||
|
||||
-- Joshua M. Boniface <joshua@boniface.me> Sat, 21 Aug 2021 03:28:48 -0400
|
||||
|
||||
pvc (0.9.32-0) unstable; urgency=high
|
||||
|
||||
* [CLI Client] Fixes some incorrect colours in network lists
|
||||
|
|
|
@ -55,6 +55,12 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl
|
|||
|
||||
## Changelog
|
||||
|
||||
#### v0.9.33
|
||||
|
||||
* [Node Daemon] A major refactoring of the node daemon
|
||||
* [CLI Client] Fixes output errors if a node has no provisioner data
|
||||
* [Packages] Fixes issues with including __pycache__ directories in .deb files
|
||||
|
||||
#### v0.9.32
|
||||
|
||||
* [CLI Client] Fixes some incorrect colours in network lists
|
||||
|
|
|
@ -48,7 +48,7 @@ import re
|
|||
import json
|
||||
|
||||
# Daemon version
|
||||
version = '0.9.32'
|
||||
version = '0.9.33'
|
||||
|
||||
|
||||
##########################################################
|
||||
|
|
Loading…
Reference in New Issue