Bump version to 0.9.54
This commit is contained in:
parent
172d0a86e4
commit
239c392892
|
@ -1,5 +1,10 @@
|
||||||
## PVC Changelog
|
## PVC Changelog
|
||||||
|
|
||||||
|
###### [v0.9.54](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.54)
|
||||||
|
|
||||||
|
[CLI Client] Fixes a bad variable reference from the previous change
|
||||||
|
[API Daemon] Enables TLSv1 with an SSLContext object for maximum compatibility
|
||||||
|
|
||||||
###### [v0.9.53](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.53)
|
###### [v0.9.53](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.53)
|
||||||
|
|
||||||
* [API] Fixes sort order of VM list (for real this time)
|
* [API] Fixes sort order of VM list (for real this time)
|
||||||
|
|
|
@ -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.53"
|
version = "0.9.54"
|
||||||
|
|
||||||
# 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.53",
|
version="0.9.54",
|
||||||
packages=["pvc", "pvc.cli_lib"],
|
packages=["pvc", "pvc.cli_lib"],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"Click",
|
"Click",
|
||||||
|
|
|
@ -1,3 +1,10 @@
|
||||||
|
pvc (0.9.54-0) unstable; urgency=high
|
||||||
|
|
||||||
|
[CLI Client] Fixes a bad variable reference from the previous change
|
||||||
|
[API Daemon] Enables TLSv1 with an SSLContext object for maximum compatibility
|
||||||
|
|
||||||
|
-- Joshua M. Boniface <joshua@boniface.me> Tue, 23 Aug 2022 11:01:05 -0400
|
||||||
|
|
||||||
pvc (0.9.53-0) unstable; urgency=high
|
pvc (0.9.53-0) unstable; urgency=high
|
||||||
|
|
||||||
* [API] Fixes sort order of VM list (for real this time)
|
* [API] Fixes sort order of VM list (for real this time)
|
||||||
|
|
|
@ -48,7 +48,7 @@ import re
|
||||||
import json
|
import json
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = "0.9.53"
|
version = "0.9.54"
|
||||||
|
|
||||||
|
|
||||||
##########################################################
|
##########################################################
|
||||||
|
|
Loading…
Reference in New Issue