Bump version to 0.9.32

This commit is contained in:
Joshua Boniface 2021-08-19 12:37:58 -04:00
parent 42e776fac1
commit afdf254297
7 changed files with 24 additions and 4 deletions

View File

@ -1 +1 @@
0.9.31
0.9.32

View File

@ -55,6 +55,12 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl
## Changelog
#### v0.9.32
* [CLI Client] Fixes some incorrect colours in network lists
* [Documentation] Adds documentation screenshots of CLI client
* [Node Daemon] Fixes a bug if VM stats gathering fails
#### v0.9.31
* [Packages] Cleans up obsolete Suggests lines

View File

@ -25,7 +25,7 @@ import yaml
from distutils.util import strtobool as dustrtobool
# Daemon version
version = '0.9.31'
version = '0.9.32'
# API version
API_VERSION = 1.0

View File

@ -2,7 +2,7 @@ from setuptools import setup
setup(
name='pvc',
version='0.9.31',
version='0.9.32',
packages=['pvc', 'pvc.cli_lib'],
install_requires=[
'Click',

8
debian/changelog vendored
View File

@ -1,3 +1,11 @@
pvc (0.9.32-0) unstable; urgency=high
* [CLI Client] Fixes some incorrect colours in network lists
* [Documentation] Adds documentation screenshots of CLI client
* [Node Daemon] Fixes a bug if VM stats gathering fails
-- Joshua M. Boniface <joshua@boniface.me> Thu, 19 Aug 2021 12:37:58 -0400
pvc (0.9.31-0) unstable; urgency=high
* [Packages] Cleans up obsolete Suggests lines

View File

@ -55,6 +55,12 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl
## Changelog
#### v0.9.32
* [CLI Client] Fixes some incorrect colours in network lists
* [Documentation] Adds documentation screenshots of CLI client
* [Node Daemon] Fixes a bug if VM stats gathering fails
#### v0.9.31
* [Packages] Cleans up obsolete Suggests lines

View File

@ -56,7 +56,7 @@ import pvcnoded.CephInstance as CephInstance
import pvcnoded.MetadataAPIInstance as MetadataAPIInstance
# Version string for startup output
version = '0.9.31'
version = '0.9.32'
###############################################################################
# PVCD - node daemon startup program