Bump version to 0.9.39
This commit is contained in:
parent
5b3bb9f306
commit
e79d200244
|
@ -55,6 +55,12 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
|
###### v0.9.39
|
||||||
|
|
||||||
|
* [Documentation] Update several documentation sections
|
||||||
|
* [API Daemon/CLI Client] Add negate flag for VM option limits (node, tag, state)
|
||||||
|
* [Build] Add linting check to build-and-deploy.sh
|
||||||
|
|
||||||
###### v0.9.38
|
###### v0.9.38
|
||||||
|
|
||||||
* [All] Significantly improve storage benchmark format and reporting
|
* [All] Significantly improve storage benchmark format and reporting
|
||||||
|
|
|
@ -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.38'
|
version = '0.9.39'
|
||||||
|
|
||||||
# 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.38',
|
version='0.9.39',
|
||||||
packages=['pvc', 'pvc.cli_lib'],
|
packages=['pvc', 'pvc.cli_lib'],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'Click',
|
'Click',
|
||||||
|
|
|
@ -1,3 +1,11 @@
|
||||||
|
pvc (0.9.39-0) unstable; urgency=high
|
||||||
|
|
||||||
|
* [Documentation] Update several documentation sections
|
||||||
|
* [API Daemon/CLI Client] Add negate flag for VM option limits (node, tag, state)
|
||||||
|
* [Build] Add linting check to build-and-deploy.sh
|
||||||
|
|
||||||
|
-- Joshua M. Boniface <joshua@boniface.me> Thu, 07 Oct 2021 11:52:38 -0400
|
||||||
|
|
||||||
pvc (0.9.38-0) unstable; urgency=high
|
pvc (0.9.38-0) unstable; urgency=high
|
||||||
|
|
||||||
* [All] Significantly improve storage benchmark format and reporting
|
* [All] Significantly improve storage benchmark format and reporting
|
||||||
|
|
|
@ -55,6 +55,12 @@ While PVC's API and internals aren't very screenshot-worthy, here is some exampl
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
|
###### v0.9.39
|
||||||
|
|
||||||
|
* [Documentation] Update several documentation sections
|
||||||
|
* [API Daemon/CLI Client] Add negate flag for VM option limits (node, tag, state)
|
||||||
|
* [Build] Add linting check to build-and-deploy.sh
|
||||||
|
|
||||||
###### v0.9.38
|
###### v0.9.38
|
||||||
|
|
||||||
* [All] Significantly improve storage benchmark format and reporting
|
* [All] Significantly improve storage benchmark format and reporting
|
||||||
|
|
|
@ -48,7 +48,7 @@ import re
|
||||||
import json
|
import json
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = '0.9.38'
|
version = '0.9.39'
|
||||||
|
|
||||||
|
|
||||||
##########################################################
|
##########################################################
|
||||||
|
|
Loading…
Reference in New Issue