Bump version to 0.9.52
This commit is contained in:
parent
8d0f26ff7a
commit
2a21d48128
|
@ -1,5 +1,12 @@
|
||||||
## PVC Changelog
|
## PVC Changelog
|
||||||
|
|
||||||
|
###### [v0.9.52](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.52)
|
||||||
|
|
||||||
|
* [CLI] Fixes a bug with vm modify not requiring a cluster
|
||||||
|
* [Docs] Adds a reference to the bootstrap daemon
|
||||||
|
* [API] Adds sorting to node and VM lists for consistency
|
||||||
|
* [Node Daemon/API] Adds kb_ stats values for OSD stats
|
||||||
|
|
||||||
###### [v0.9.51](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.51)
|
###### [v0.9.51](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.51)
|
||||||
|
|
||||||
* [CLI Client] Fixes a faulty literal_eval when viewing task status
|
* [CLI Client] Fixes a faulty literal_eval when viewing task status
|
||||||
|
|
|
@ -25,7 +25,7 @@ import yaml
|
||||||
from distutils.util import strtobool as dustrtobool
|
from distutils.util import strtobool as dustrtobool
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = "0.9.51"
|
version = "0.9.52"
|
||||||
|
|
||||||
# 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.51",
|
version="0.9.52",
|
||||||
packages=["pvc", "pvc.cli_lib"],
|
packages=["pvc", "pvc.cli_lib"],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"Click",
|
"Click",
|
||||||
|
|
|
@ -1,3 +1,12 @@
|
||||||
|
pvc (0.9.52-0) unstable; urgency=high
|
||||||
|
|
||||||
|
* [CLI] Fixes a bug with vm modify not requiring a cluster
|
||||||
|
* [Docs] Adds a reference to the bootstrap daemon
|
||||||
|
* [API] Adds sorting to node and VM lists for consistency
|
||||||
|
* [Node Daemon/API] Adds kb_ stats values for OSD stats
|
||||||
|
|
||||||
|
-- Joshua M. Boniface <joshua@boniface.me> Fri, 12 Aug 2022 11:09:25 -0400
|
||||||
|
|
||||||
pvc (0.9.51-0) unstable; urgency=high
|
pvc (0.9.51-0) unstable; urgency=high
|
||||||
|
|
||||||
* [CLI Client] Fixes a faulty literal_eval when viewing task status
|
* [CLI Client] Fixes a faulty literal_eval when viewing task status
|
||||||
|
|
|
@ -48,7 +48,7 @@ import re
|
||||||
import json
|
import json
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = "0.9.51"
|
version = "0.9.52"
|
||||||
|
|
||||||
|
|
||||||
##########################################################
|
##########################################################
|
||||||
|
|
Loading…
Reference in New Issue