Bump version to 0.9.40
This commit is contained in:
parent
46078932c3
commit
c27359c4bf
|
@ -1,5 +1,10 @@
|
||||||
## PVC Changelog
|
## PVC Changelog
|
||||||
|
|
||||||
|
###### [v0.9.40](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.40)
|
||||||
|
|
||||||
|
* [Docs] Documentation updates for new Changelog file
|
||||||
|
* [Node Daemon] Fixes bug with schema updates
|
||||||
|
|
||||||
###### [v0.9.39](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.39)
|
###### [v0.9.39](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.39)
|
||||||
|
|
||||||
* [Documentation] Update several documentation sections
|
* [Documentation] Update several documentation sections
|
||||||
|
|
|
@ -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.39'
|
version = '0.9.40'
|
||||||
|
|
||||||
# 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.39',
|
version='0.9.40',
|
||||||
packages=['pvc', 'pvc.cli_lib'],
|
packages=['pvc', 'pvc.cli_lib'],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'Click',
|
'Click',
|
||||||
|
|
|
@ -1,3 +1,10 @@
|
||||||
|
pvc (0.9.40-0) unstable; urgency=high
|
||||||
|
|
||||||
|
* [Docs] Documentation updates for new Changelog file
|
||||||
|
* [Node Daemon] Fixes bug with schema updates
|
||||||
|
|
||||||
|
-- Joshua M. Boniface <joshua@boniface.me> Thu, 07 Oct 2021 14:42:04 -0400
|
||||||
|
|
||||||
pvc (0.9.39-0) unstable; urgency=high
|
pvc (0.9.39-0) unstable; urgency=high
|
||||||
|
|
||||||
* [Documentation] Update several documentation sections
|
* [Documentation] Update several documentation sections
|
||||||
|
|
|
@ -48,7 +48,7 @@ import re
|
||||||
import json
|
import json
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = '0.9.39'
|
version = '0.9.40'
|
||||||
|
|
||||||
|
|
||||||
##########################################################
|
##########################################################
|
||||||
|
|
Loading…
Reference in New Issue