Bump version to 0.9.40
This commit is contained in:
parent
e403146bcf
commit
ee348593c9
|
@ -1,5 +1,10 @@
|
|||
## 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)
|
||||
|
||||
* [Documentation] Update several documentation sections
|
||||
|
|
|
@ -25,7 +25,7 @@ import yaml
|
|||
from distutils.util import strtobool as dustrtobool
|
||||
|
||||
# Daemon version
|
||||
version = '0.9.39'
|
||||
version = '0.9.40'
|
||||
|
||||
# API version
|
||||
API_VERSION = 1.0
|
||||
|
|
|
@ -2,7 +2,7 @@ from setuptools import setup
|
|||
|
||||
setup(
|
||||
name='pvc',
|
||||
version='0.9.39',
|
||||
version='0.9.40',
|
||||
packages=['pvc', 'pvc.cli_lib'],
|
||||
install_requires=[
|
||||
'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
|
||||
|
||||
* [Documentation] Update several documentation sections
|
||||
|
|
|
@ -48,7 +48,7 @@ import re
|
|||
import json
|
||||
|
||||
# Daemon version
|
||||
version = '0.9.39'
|
||||
version = '0.9.40'
|
||||
|
||||
|
||||
##########################################################
|
||||
|
|
Loading…
Reference in New Issue