Compare commits
No commits in common. "1aa59991090d9fbfbcfd2e8931ed048f8dc6b502" and "7a99e0e524f39d42daba693ccef09b3c8cdcc1a7" have entirely different histories.
1aa5999109
...
7a99e0e524
|
@ -1,14 +1,5 @@
|
||||||
## PVC Changelog
|
## PVC Changelog
|
||||||
|
|
||||||
###### [v0.9.98](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.98)
|
|
||||||
|
|
||||||
* [CLI Client] Fixed output when API call times out
|
|
||||||
* [Node Daemon] Improves the handling of fence states
|
|
||||||
* [API Daemon/CLI Client] Adds support for storage snapshot rollback
|
|
||||||
* [CLI Client] Adds additional warning messages about snapshot consistency to help output
|
|
||||||
* [API Daemon] Fixes a bug listing snapshots by pool/volume
|
|
||||||
* [Node Daemon] Adds a --version flag for information gathering by update-motd.sh
|
|
||||||
|
|
||||||
###### [v0.9.97](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.97)
|
###### [v0.9.97](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.97)
|
||||||
|
|
||||||
* [Client CLI] Ensures --lines is always an integer value
|
* [Client CLI] Ensures --lines is always an integer value
|
||||||
|
|
|
@ -27,7 +27,7 @@ from distutils.util import strtobool as dustrtobool
|
||||||
import daemon_lib.config as cfg
|
import daemon_lib.config as cfg
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = "0.9.98"
|
version = "0.9.97"
|
||||||
|
|
||||||
# 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.98",
|
version="0.9.97",
|
||||||
packages=["pvc.cli", "pvc.lib"],
|
packages=["pvc.cli", "pvc.lib"],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"Click",
|
"Click",
|
||||||
|
|
|
@ -1,14 +1,3 @@
|
||||||
pvc (0.9.98-0) unstable; urgency=high
|
|
||||||
|
|
||||||
* [CLI Client] Fixed output when API call times out
|
|
||||||
* [Node Daemon] Improves the handling of fence states
|
|
||||||
* [API Daemon/CLI Client] Adds support for storage snapshot rollback
|
|
||||||
* [CLI Client] Adds additional warning messages about snapshot consistency to help output
|
|
||||||
* [API Daemon] Fixes a bug listing snapshots by pool/volume
|
|
||||||
* [Node Daemon] Adds a --version flag for information gathering by update-motd.sh
|
|
||||||
|
|
||||||
-- Joshua M. Boniface <joshua@boniface.me> Wed, 05 Jun 2024 12:01:31 -0400
|
|
||||||
|
|
||||||
pvc (0.9.97-0) unstable; urgency=high
|
pvc (0.9.97-0) unstable; urgency=high
|
||||||
|
|
||||||
* [Client CLI] Ensures --lines is always an integer value
|
* [Client CLI] Ensures --lines is always an integer value
|
||||||
|
|
|
@ -33,7 +33,7 @@ import os
|
||||||
import signal
|
import signal
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = "0.9.98"
|
version = "0.9.97"
|
||||||
|
|
||||||
|
|
||||||
##########################################################
|
##########################################################
|
||||||
|
|
|
@ -19,11 +19,6 @@
|
||||||
#
|
#
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
from sys import argv
|
|
||||||
import pvcnoded.Daemon # noqa: F401
|
import pvcnoded.Daemon # noqa: F401
|
||||||
|
|
||||||
if "--version" in argv:
|
|
||||||
print(pvcnoded.Daemon.version)
|
|
||||||
exit(0)
|
|
||||||
|
|
||||||
pvcnoded.Daemon.entrypoint()
|
pvcnoded.Daemon.entrypoint()
|
||||||
|
|
|
@ -49,7 +49,7 @@ import re
|
||||||
import json
|
import json
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = "0.9.98"
|
version = "0.9.97"
|
||||||
|
|
||||||
|
|
||||||
##########################################################
|
##########################################################
|
||||||
|
|
|
@ -44,7 +44,7 @@ from daemon_lib.vmbuilder import (
|
||||||
)
|
)
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = "0.9.98"
|
version = "0.9.97"
|
||||||
|
|
||||||
|
|
||||||
config = cfg.get_configuration()
|
config = cfg.get_configuration()
|
||||||
|
|
Loading…
Reference in New Issue