Bump version to 0.9.46

This commit is contained in:
Joshua Boniface 2021-12-28 15:02:14 -05:00
parent 00d2c67c41
commit 58d57d7037
6 changed files with 30 additions and 4 deletions

View File

@ -1 +1 @@
0.9.45
0.9.46

View File

@ -1,5 +1,17 @@
## PVC Changelog
###### [v0.9.46](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.46)
* [API] Fixes bugs with legacy benchmark display
* [API] Fixes a bug around cloned image sizes
* [API] Removes extraneous message text in provisioner create command
* [API] Corrects bugs around fuzzy matching
* [CLI] Adds auditing for PVC CLI to local syslog
* [CLI] Adds --yes bypass for benchmark command
* [Node Daemon/API/CLI] Adds support for "detect" strings when specifying OSD or OSDDB devices
* [Node Daemon] Fixes a bug when removing OSDs
* [Node Daemon] Fixes a single-node cluster shutdown deadlock
###### [v0.9.45](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.45)
* [Node Daemon] Fixes an ordering issue with pvcnoded.service

View File

@ -25,7 +25,7 @@ import yaml
from distutils.util import strtobool as dustrtobool
# Daemon version
version = "0.9.45"
version = "0.9.46"
# API version
API_VERSION = 1.0

View File

@ -2,7 +2,7 @@ from setuptools import setup
setup(
name="pvc",
version="0.9.45",
version="0.9.46",
packages=["pvc", "pvc.cli_lib"],
install_requires=[
"Click",

14
debian/changelog vendored
View File

@ -1,3 +1,17 @@
pvc (0.9.46-0) unstable; urgency=high
* [API] Fixes bugs with legacy benchmark display
* [API] Fixes a bug around cloned image sizes
* [API] Removes extraneous message text in provisioner create command
* [API] Corrects bugs around fuzzy matching
* [CLI] Adds auditing for PVC CLI to local syslog
* [CLI] Adds --yes bypass for benchmark command
* [Node Daemon/API/CLI] Adds support for "detect" strings when specifying OSD or OSDDB devices
* [Node Daemon] Fixes a bug when removing OSDs
* [Node Daemon] Fixes a single-node cluster shutdown deadlock
-- Joshua M. Boniface <joshua@boniface.me> Tue, 28 Dec 2021 15:02:14 -0500
pvc (0.9.45-0) unstable; urgency=high
* [Node Daemon] Fixes an ordering issue with pvcnoded.service

View File

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