Bump version to 0.9.33

This commit is contained in:
Joshua Boniface 2021-08-21 03:28:48 -04:00
parent f6c5aa9992
commit a18cef5f25
7 changed files with 24 additions and 4 deletions

View File

@ -1 +1 @@
0.9.32
0.9.33

View File

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

View File

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

View File

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

8
debian/changelog vendored
View File

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

View File

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

View File

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