Bump version to 0.9.57
This commit is contained in:
parent
8af7189dd0
commit
d65f512897
|
@ -1,5 +1,12 @@
|
|||
## PVC Changelog
|
||||
|
||||
###### [v0.9.57](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.57)
|
||||
|
||||
* [CLI] Removes an invalid reference to VXLAN
|
||||
* [CLI] Improves the handling of invalid networks in VM lists and on attach
|
||||
* [API] Modularizes the benchmarking library so it can be used externally too
|
||||
* [Daemon Library] Adds a module tag file so it can be used externally too
|
||||
|
||||
###### [v0.9.56](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.56)
|
||||
|
||||
**Breaking Change**: Existing provisioner scripts are no longer valid; new example scripts are provided.
|
||||
|
|
|
@ -27,7 +27,7 @@ from ssl import SSLContext, TLSVersion
|
|||
from distutils.util import strtobool as dustrtobool
|
||||
|
||||
# Daemon version
|
||||
version = "0.9.56"
|
||||
version = "0.9.57"
|
||||
|
||||
# API version
|
||||
API_VERSION = 1.0
|
||||
|
|
|
@ -2,7 +2,7 @@ from setuptools import setup
|
|||
|
||||
setup(
|
||||
name="pvc",
|
||||
version="0.9.56",
|
||||
version="0.9.57",
|
||||
packages=["pvc", "pvc.cli_lib"],
|
||||
install_requires=[
|
||||
"Click",
|
||||
|
|
|
@ -1,3 +1,12 @@
|
|||
pvc (0.9.57-0) unstable; urgency=high
|
||||
|
||||
* [CLI] Removes an invalid reference to VXLAN
|
||||
* [CLI] Improves the handling of invalid networks in VM lists and on attach
|
||||
* [API] Modularizes the benchmarking library so it can be used externally too
|
||||
* [Daemon Library] Adds a module tag file so it can be used externally too
|
||||
|
||||
-- Joshua M. Boniface <joshua@boniface.me> Sun, 06 Nov 2022 01:39:50 -0400
|
||||
|
||||
pvc (0.9.56-0) unstable; urgency=high
|
||||
|
||||
* [API/Provisioner] Fundamentally revamps the provisioner script framework to provide more extensibility (BREAKING CHANGE)
|
||||
|
|
|
@ -48,7 +48,7 @@ import re
|
|||
import json
|
||||
|
||||
# Daemon version
|
||||
version = "0.9.56"
|
||||
version = "0.9.57"
|
||||
|
||||
|
||||
##########################################################
|
||||
|
|
Loading…
Reference in New Issue