Bump version to 0.9.65

This commit is contained in:
Joshua Boniface 2023-08-23 01:56:57 -04:00
parent 65d2b7869c
commit 1e083d7652
6 changed files with 16 additions and 4 deletions

View File

@ -1 +1 @@
0.9.64
0.9.65

View File

@ -1,5 +1,10 @@
## PVC Changelog
###### [v0.9.65](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.65)
* [CLI] Fixes a bug in the node list filtering command
* [CLI] Fixes a bug/default when no connection is specified
###### [v0.9.64](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.64)
**Breaking Change [CLI]**: The CLI client root commands have been reorganized. The following commands have changed:

View File

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

View File

@ -2,7 +2,7 @@ from setuptools import setup
setup(
name="pvc",
version="0.9.64",
version="0.9.65",
packages=["pvc.cli", "pvc.lib"],
install_requires=[
"Click",

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
pvc (0.9.65-0) unstable; urgency=high
* [CLI] Fixes a bug in the node list filtering command
* [CLI] Fixes a bug/default when no connection is specified
-- Joshua M. Boniface <joshua@boniface.me> Wed, 23 Aug 2023 01:56:57 -0400
pvc (0.9.64-0) unstable; urgency=high
**Breaking Change [CLI]**: The CLI client root commands have been reorganized. The following commands have changed:

View File

@ -49,7 +49,7 @@ import re
import json
# Daemon version
version = "0.9.64"
version = "0.9.65"
##########################################################