Bump version to 0.9.63
This commit is contained in:
parent
78322f4de4
commit
3a90fda109
|
@ -1,5 +1,13 @@
|
||||||
## PVC Changelog
|
## PVC Changelog
|
||||||
|
|
||||||
|
###### [v0.9.63](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.63)
|
||||||
|
|
||||||
|
* Mentions Ganeti in the docs
|
||||||
|
* Increases API timeout back to 2s
|
||||||
|
* Adds .update-* configs to dpkg plugin
|
||||||
|
* Adds full/nearfull OSD warnings
|
||||||
|
* Improves size value handling for volumes
|
||||||
|
|
||||||
###### [v0.9.62](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.62)
|
###### [v0.9.62](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.62)
|
||||||
|
|
||||||
* [all] Adds an enhanced health checking, monitoring, and reporting system for nodes and clusters
|
* [all] Adds an enhanced health checking, monitoring, and reporting system for nodes and clusters
|
||||||
|
|
|
@ -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.62"
|
version = "0.9.63"
|
||||||
|
|
||||||
# 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.62",
|
version="0.9.63",
|
||||||
packages=["pvc", "pvc.cli_lib"],
|
packages=["pvc", "pvc.cli_lib"],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"Click",
|
"Click",
|
||||||
|
|
|
@ -1,3 +1,13 @@
|
||||||
|
pvc (0.9.63-0) unstable; urgency=high
|
||||||
|
|
||||||
|
* Mentions Ganeti in the docs
|
||||||
|
* Increases API timeout back to 2s
|
||||||
|
* Adds .update-* configs to dpkg plugin
|
||||||
|
* Adds full/nearfull OSD warnings
|
||||||
|
* Improves size value handling for volumes
|
||||||
|
|
||||||
|
-- Joshua M. Boniface <joshua@boniface.me> Fri, 28 Apr 2023 14:47:04 -0400
|
||||||
|
|
||||||
pvc (0.9.62-0) unstable; urgency=high
|
pvc (0.9.62-0) unstable; urgency=high
|
||||||
|
|
||||||
* [all] Adds an enhanced health checking, monitoring, and reporting system for nodes and clusters
|
* [all] Adds an enhanced health checking, monitoring, and reporting system for nodes and clusters
|
||||||
|
|
|
@ -49,7 +49,7 @@ import re
|
||||||
import json
|
import json
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = "0.9.62"
|
version = "0.9.63"
|
||||||
|
|
||||||
|
|
||||||
##########################################################
|
##########################################################
|
||||||
|
|
Loading…
Reference in New Issue