Bump version to 0.9.79
This commit is contained in:
parent
35f80e544c
commit
221af3f241
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,5 +1,15 @@
|
|||
## PVC Changelog
|
||||
|
||||
###### [v0.9.79](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.79)
|
||||
|
||||
**API Changes**: New endpoints /vm/{vm}/backup, /vm/{vm}/restore
|
||||
|
||||
* [CLI Client] Fixes some storage pool help text messages
|
||||
* [Node Daemon] Increases the IPMI monitoring plugin timeout
|
||||
* [All] Adds support for VM backups, including creation, removal, and restore
|
||||
* [Repository] Fixes shebangs in scripts to be consistent
|
||||
* [Daemon Library] Improves the handling of VM list arguments (default None)
|
||||
|
||||
###### [v0.9.78](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.78)
|
||||
|
||||
* [API, Client CLI] Fixes several bugs around image uploads; adds a new query parameter for non-raw images
|
||||
|
|
|
@ -27,7 +27,7 @@ from ssl import SSLContext, TLSVersion
|
|||
from distutils.util import strtobool as dustrtobool
|
||||
|
||||
# Daemon version
|
||||
version = "0.9.78"
|
||||
version = "0.9.79"
|
||||
|
||||
# API version
|
||||
API_VERSION = 1.0
|
||||
|
|
|
@ -2,7 +2,7 @@ from setuptools import setup
|
|||
|
||||
setup(
|
||||
name="pvc",
|
||||
version="0.9.78",
|
||||
version="0.9.79",
|
||||
packages=["pvc.cli", "pvc.lib"],
|
||||
install_requires=[
|
||||
"Click",
|
||||
|
|
|
@ -1,3 +1,15 @@
|
|||
pvc (0.9.79-0) unstable; urgency=high
|
||||
|
||||
**API Changes**: New endpoints /vm/{vm}/backup, /vm/{vm}/restore
|
||||
|
||||
* [CLI Client] Fixes some storage pool help text messages
|
||||
* [Node Daemon] Increases the IPMI monitoring plugin timeout
|
||||
* [All] Adds support for VM backups, including creation, removal, and restore
|
||||
* [Repository] Fixes shebangs in scripts to be consistent
|
||||
* [Daemon Library] Improves the handling of VM list arguments (default None)
|
||||
|
||||
-- Joshua M. Boniface <joshua@boniface.me> Tue, 24 Oct 2023 02:10:24 -0400
|
||||
|
||||
pvc (0.9.78-0) unstable; urgency=high
|
||||
|
||||
* [API, Client CLI] Fixes several bugs around image uploads; adds a new query parameter for non-raw images
|
||||
|
|
|
@ -49,7 +49,7 @@ import re
|
|||
import json
|
||||
|
||||
# Daemon version
|
||||
version = "0.9.78"
|
||||
version = "0.9.79"
|
||||
|
||||
|
||||
##########################################################
|
||||
|
|
Loading…
Reference in New Issue