Bump version to 0.9.58
This commit is contained in:
parent
91e450f399
commit
095bcb2373
|
@ -1,5 +1,9 @@
|
|||
## PVC Changelog
|
||||
|
||||
###### [v0.9.58](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.58)
|
||||
|
||||
* [API] Fixes a bug where migration selector could have case-sensitive operational faults
|
||||
|
||||
###### [v0.9.57](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.57)
|
||||
|
||||
* [CLI] Removes an invalid reference to VXLAN
|
||||
|
|
|
@ -27,7 +27,7 @@ from ssl import SSLContext, TLSVersion
|
|||
from distutils.util import strtobool as dustrtobool
|
||||
|
||||
# Daemon version
|
||||
version = "0.9.57"
|
||||
version = "0.9.58"
|
||||
|
||||
# API version
|
||||
API_VERSION = 1.0
|
||||
|
|
|
@ -2,7 +2,7 @@ from setuptools import setup
|
|||
|
||||
setup(
|
||||
name="pvc",
|
||||
version="0.9.57",
|
||||
version="0.9.58",
|
||||
packages=["pvc", "pvc.cli_lib"],
|
||||
install_requires=[
|
||||
"Click",
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
pvc (0.9.58-0) unstable; urgency=high
|
||||
|
||||
* [API] Fixes a bug where migration selector could have case-sensitive operational faults
|
||||
|
||||
-- Joshua M. Boniface <joshua@boniface.me> Mon, 07 Nov 2022 12:27:48 -0500
|
||||
|
||||
pvc (0.9.57-0) unstable; urgency=high
|
||||
|
||||
* [CLI] Removes an invalid reference to VXLAN
|
||||
|
|
|
@ -48,7 +48,7 @@ import re
|
|||
import json
|
||||
|
||||
# Daemon version
|
||||
version = "0.9.57"
|
||||
version = "0.9.58"
|
||||
|
||||
|
||||
##########################################################
|
||||
|
|
Loading…
Reference in New Issue