Bump version to 0.9.32
This commit is contained in:
parent
42e776fac1
commit
afdf254297
|
@ -55,6 +55,12 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl
|
||||||
|
|
||||||
## Changelog
|
## 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
|
#### v0.9.31
|
||||||
|
|
||||||
* [Packages] Cleans up obsolete Suggests lines
|
* [Packages] Cleans up obsolete Suggests lines
|
||||||
|
|
|
@ -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.31'
|
version = '0.9.32'
|
||||||
|
|
||||||
# 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.31',
|
version='0.9.32',
|
||||||
packages=['pvc', 'pvc.cli_lib'],
|
packages=['pvc', 'pvc.cli_lib'],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'Click',
|
'Click',
|
||||||
|
|
|
@ -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
|
pvc (0.9.31-0) unstable; urgency=high
|
||||||
|
|
||||||
* [Packages] Cleans up obsolete Suggests lines
|
* [Packages] Cleans up obsolete Suggests lines
|
||||||
|
|
|
@ -55,6 +55,12 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl
|
||||||
|
|
||||||
## Changelog
|
## 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
|
#### v0.9.31
|
||||||
|
|
||||||
* [Packages] Cleans up obsolete Suggests lines
|
* [Packages] Cleans up obsolete Suggests lines
|
||||||
|
|
|
@ -56,7 +56,7 @@ import pvcnoded.CephInstance as CephInstance
|
||||||
import pvcnoded.MetadataAPIInstance as MetadataAPIInstance
|
import pvcnoded.MetadataAPIInstance as MetadataAPIInstance
|
||||||
|
|
||||||
# Version string for startup output
|
# Version string for startup output
|
||||||
version = '0.9.31'
|
version = '0.9.32'
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# PVCD - node daemon startup program
|
# PVCD - node daemon startup program
|
||||||
|
|
Loading…
Reference in New Issue