Bump version to 0.9.55

This commit is contained in:
Joshua Boniface 2022-10-04 13:21:40 -04:00
parent 5942aa50fc
commit f1df1cfe93
6 changed files with 16 additions and 4 deletions

View File

@ -1 +1 @@
0.9.54
0.9.55

View File

@ -1,5 +1,10 @@
## PVC Changelog
###### [v0.9.55](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.55)
* Fixes a problem with the literal eval handler in the provisioner (again)
* Fixes a potential log deadlock in Zookeeper-lost situations when doing keepalives
###### [v0.9.54](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.54)
[CLI Client] Fixes a bad variable reference from the previous change

View File

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

View File

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

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
pvc (0.9.55-0) unstable; urgency=high
* Fixes a problem with the literal eval handler in the provisioner (again)
* Fixes a potential log deadlock in Zookeeper-lost situations when doing keepalives
-- Joshua M. Boniface <joshua@boniface.me> Tue, 04 Oct 2022 13:21:40 -0400
pvc (0.9.54-0) unstable; urgency=high
[CLI Client] Fixes a bad variable reference from the previous change

View File

@ -48,7 +48,7 @@ import re
import json
# Daemon version
version = "0.9.54"
version = "0.9.55"
##########################################################