Bump version to 0.9.63

This commit is contained in:
Joshua Boniface 2023-04-28 14:47:04 -04:00
parent 78322f4de4
commit 3a90fda109
6 changed files with 22 additions and 4 deletions

View File

@ -1 +1 @@
0.9.62
0.9.63

View File

@ -1,5 +1,13 @@
## 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)
* [all] Adds an enhanced health checking, monitoring, and reporting system for nodes and clusters

View File

@ -27,7 +27,7 @@ from ssl import SSLContext, TLSVersion
from distutils.util import strtobool as dustrtobool
# Daemon version
version = "0.9.62"
version = "0.9.63"
# API version
API_VERSION = 1.0

View File

@ -2,7 +2,7 @@ from setuptools import setup
setup(
name="pvc",
version="0.9.62",
version="0.9.63",
packages=["pvc", "pvc.cli_lib"],
install_requires=[
"Click",

10
debian/changelog vendored
View File

@ -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
* [all] Adds an enhanced health checking, monitoring, and reporting system for nodes and clusters

View File

@ -49,7 +49,7 @@ import re
import json
# Daemon version
version = "0.9.62"
version = "0.9.63"
##########################################################