Bump version to 0.9.59
This commit is contained in:
parent
38d63d9837
commit
92feeefd26
|
@ -1,5 +1,9 @@
|
||||||
## PVC Changelog
|
## PVC Changelog
|
||||||
|
|
||||||
|
###### [v0.9.59](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.59)
|
||||||
|
|
||||||
|
* [API] Flips the mem(prov) and mem(free) selectors making mem(free) the default for "mem" and "memprov" explicit
|
||||||
|
|
||||||
###### [v0.9.58](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.58)
|
###### [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
|
* [API] Fixes a bug where migration selector could have case-sensitive operational faults
|
||||||
|
|
|
@ -27,7 +27,7 @@ from ssl import SSLContext, TLSVersion
|
||||||
from distutils.util import strtobool as dustrtobool
|
from distutils.util import strtobool as dustrtobool
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = "0.9.58"
|
version = "0.9.59"
|
||||||
|
|
||||||
# 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.58",
|
version="0.9.59",
|
||||||
packages=["pvc", "pvc.cli_lib"],
|
packages=["pvc", "pvc.cli_lib"],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"Click",
|
"Click",
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
pvc (0.9.59-0) unstable; urgency=high
|
||||||
|
|
||||||
|
* [API] Flips the mem(prov) and mem(free) selectors making mem(free) the default for "mem" and "memprov" explicit
|
||||||
|
|
||||||
|
-- Joshua M. Boniface <joshua@boniface.me> Tue, 15 Nov 2022 15:50:15 -0500
|
||||||
|
|
||||||
pvc (0.9.58-0) unstable; urgency=high
|
pvc (0.9.58-0) unstable; urgency=high
|
||||||
|
|
||||||
* [API] Fixes a bug where migration selector could have case-sensitive operational faults
|
* [API] Fixes a bug where migration selector could have case-sensitive operational faults
|
||||||
|
|
|
@ -48,7 +48,7 @@ import re
|
||||||
import json
|
import json
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = "0.9.58"
|
version = "0.9.59"
|
||||||
|
|
||||||
|
|
||||||
##########################################################
|
##########################################################
|
||||||
|
|
Loading…
Reference in New Issue