Bump version to 0.9.67
This commit is contained in:
parent
47d7b23763
commit
705ec802a3
|
@ -1,5 +1,9 @@
|
||||||
## PVC Changelog
|
## PVC Changelog
|
||||||
|
|
||||||
|
###### [v0.9.67](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.67)
|
||||||
|
|
||||||
|
* [CLI] Fixes several more bugs in the refactored CLI
|
||||||
|
|
||||||
###### [v0.9.66](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.66)
|
###### [v0.9.66](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.66)
|
||||||
|
|
||||||
* [CLI] Fixes a missing YAML import in CLI
|
* [CLI] Fixes a missing YAML import in CLI
|
||||||
|
|
|
@ -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.66"
|
version = "0.9.67"
|
||||||
|
|
||||||
# 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.66",
|
version="0.9.67",
|
||||||
packages=["pvc.cli", "pvc.lib"],
|
packages=["pvc.cli", "pvc.lib"],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"Click",
|
"Click",
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
pvc (0.9.67-0) unstable; urgency=high
|
||||||
|
|
||||||
|
* [CLI] Fixes several more bugs in the refactored CLI
|
||||||
|
|
||||||
|
-- Joshua M. Boniface <joshua@boniface.me> Sun, 27 Aug 2023 14:47:20 -0400
|
||||||
|
|
||||||
pvc (0.9.66-0) unstable; urgency=high
|
pvc (0.9.66-0) unstable; urgency=high
|
||||||
|
|
||||||
* [CLI] Fixes a missing YAML import in CLI
|
* [CLI] Fixes a missing YAML import in CLI
|
||||||
|
|
|
@ -49,7 +49,7 @@ import re
|
||||||
import json
|
import json
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = "0.9.66"
|
version = "0.9.67"
|
||||||
|
|
||||||
|
|
||||||
##########################################################
|
##########################################################
|
||||||
|
|
Loading…
Reference in New Issue