Bump version to 0.9.45
This commit is contained in:
parent
a75b951605
commit
02a2f6a27a
|
@ -1,5 +1,10 @@
|
|||
## PVC Changelog
|
||||
|
||||
###### [v0.9.45](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.45)
|
||||
|
||||
* [Node Daemon] Fixes an ordering issue with pvcnoded.service
|
||||
* [CLI Client] Fixes bad calls to echo() without argument
|
||||
|
||||
###### [v0.9.44](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.44)
|
||||
|
||||
* [Node Daemon] Adds a Munin plugin for Ceph utilization
|
||||
|
|
|
@ -25,7 +25,7 @@ import yaml
|
|||
from distutils.util import strtobool as dustrtobool
|
||||
|
||||
# Daemon version
|
||||
version = "0.9.44"
|
||||
version = "0.9.45"
|
||||
|
||||
# API version
|
||||
API_VERSION = 1.0
|
||||
|
|
|
@ -2,7 +2,7 @@ from setuptools import setup
|
|||
|
||||
setup(
|
||||
name="pvc",
|
||||
version="0.9.44",
|
||||
version="0.9.45",
|
||||
packages=["pvc", "pvc.cli_lib"],
|
||||
install_requires=[
|
||||
"Click",
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
pvc (0.9.45-0) unstable; urgency=high
|
||||
|
||||
* [Node Daemon] Fixes an ordering issue with pvcnoded.service
|
||||
* [CLI Client] Fixes bad calls to echo() without argument
|
||||
|
||||
-- Joshua M. Boniface <joshua@boniface.me> Thu, 25 Nov 2021 09:34:20 -0500
|
||||
|
||||
pvc (0.9.44-0) unstable; urgency=high
|
||||
|
||||
* [Node Daemon] Adds a Munin plugin for Ceph utilization
|
||||
|
|
|
@ -48,7 +48,7 @@ import re
|
|||
import json
|
||||
|
||||
# Daemon version
|
||||
version = "0.9.44"
|
||||
version = "0.9.45"
|
||||
|
||||
|
||||
##########################################################
|
||||
|
|
Loading…
Reference in New Issue