Bump version to 0.9.62

This commit is contained in:
Joshua Boniface 2023-02-22 18:13:45 -05:00
parent 07623fad1a
commit 45ad3b9a17
6 changed files with 16 additions and 4 deletions

View File

@ -1 +1 @@
0.9.61 0.9.62

View File

@ -1,5 +1,10 @@
## PVC Changelog ## PVC Changelog
###### [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
* [cli] Adds a cluster detail command
###### [v0.9.61](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.61) ###### [v0.9.61](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.61)
* [provisioner] Fixes a bug in network comparison * [provisioner] Fixes a bug in network comparison

View File

@ -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.61" version = "0.9.62"
# API version # API version
API_VERSION = 1.0 API_VERSION = 1.0

View File

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

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
pvc (0.9.62-0) unstable; urgency=high
* [all] Adds an enhanced health checking, monitoring, and reporting system for nodes and clusters
* [cli] Adds a cluster detail command
-- Joshua M. Boniface <joshua@boniface.me> Wed, 22 Feb 2023 18:13:45 -0500
pvc (0.9.61-0) unstable; urgency=high pvc (0.9.61-0) unstable; urgency=high
* [provisioner] Fixes a bug in network comparison * [provisioner] Fixes a bug in network comparison

View File

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