Bump version to 0.9.44
This commit is contained in:
parent
6d101df1ff
commit
3aa20fbaa3
|
@ -1,5 +1,14 @@
|
|||
## PVC Changelog
|
||||
|
||||
###### [v0.9.44](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.44)
|
||||
|
||||
* [Node Daemon] Adds a Munin plugin for Ceph utilization
|
||||
* [CLI] Fixes timeouts for long-running API commands
|
||||
|
||||
###### [v0.9.44](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.44)
|
||||
|
||||
* [CLI] Fixes timeout issues with long-running API commands
|
||||
|
||||
###### [v0.9.43](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.43)
|
||||
|
||||
* [Packaging] Fixes a bad test in postinst
|
||||
|
|
|
@ -25,7 +25,7 @@ import yaml
|
|||
from distutils.util import strtobool as dustrtobool
|
||||
|
||||
# Daemon version
|
||||
version = "0.9.43"
|
||||
version = "0.9.44"
|
||||
|
||||
# API version
|
||||
API_VERSION = 1.0
|
||||
|
|
|
@ -2,7 +2,7 @@ from setuptools import setup
|
|||
|
||||
setup(
|
||||
name="pvc",
|
||||
version="0.9.43",
|
||||
version="0.9.44",
|
||||
packages=["pvc", "pvc.cli_lib"],
|
||||
install_requires=[
|
||||
"Click",
|
||||
|
|
|
@ -1,3 +1,16 @@
|
|||
pvc (0.9.44-0) unstable; urgency=high
|
||||
|
||||
* [Node Daemon] Adds a Munin plugin for Ceph utilization
|
||||
* [CLI] Fixes timeouts for long-running API commands
|
||||
|
||||
-- Joshua M. Boniface <joshua@boniface.me> Thu, 11 Nov 2021 16:20:38 -0500
|
||||
|
||||
pvc (0.9.44-0) unstable; urgency=high
|
||||
|
||||
* [CLI] Fixes timeout issues with long-running API commands
|
||||
|
||||
-- Joshua M. Boniface <joshua@boniface.me> Thu, 11 Nov 2021 16:19:32 -0500
|
||||
|
||||
pvc (0.9.43-0) unstable; urgency=high
|
||||
|
||||
* [Packaging] Fixes a bad test in postinst
|
||||
|
|
|
@ -48,7 +48,7 @@ import re
|
|||
import json
|
||||
|
||||
# Daemon version
|
||||
version = "0.9.43"
|
||||
version = "0.9.44"
|
||||
|
||||
|
||||
##########################################################
|
||||
|
|
Loading…
Reference in New Issue