Bump version to 0.9.45

This commit is contained in:
Joshua Boniface 2021-11-25 09:34:20 -05:00
parent 195f31501c
commit f164d898c1
6 changed files with 16 additions and 4 deletions

View File

@ -1 +1 @@
0.9.44
0.9.45

View File

@ -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

View File

@ -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

View File

@ -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",

7
debian/changelog vendored
View File

@ -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

View File

@ -48,7 +48,7 @@ import re
import json
# Daemon version
version = "0.9.44"
version = "0.9.45"
##########################################################