Bump version to 0.9.46
This commit is contained in:
parent
00d2c67c41
commit
58d57d7037
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -1,5 +1,17 @@
|
||||||
## PVC Changelog
|
## 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)
|
###### [v0.9.45](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.45)
|
||||||
|
|
||||||
* [Node Daemon] Fixes an ordering issue with pvcnoded.service
|
* [Node Daemon] Fixes an ordering issue with pvcnoded.service
|
||||||
|
|
|
@ -25,7 +25,7 @@ import yaml
|
||||||
from distutils.util import strtobool as dustrtobool
|
from distutils.util import strtobool as dustrtobool
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = "0.9.45"
|
version = "0.9.46"
|
||||||
|
|
||||||
# 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.45",
|
version="0.9.46",
|
||||||
packages=["pvc", "pvc.cli_lib"],
|
packages=["pvc", "pvc.cli_lib"],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"Click",
|
"Click",
|
||||||
|
|
|
@ -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
|
pvc (0.9.45-0) unstable; urgency=high
|
||||||
|
|
||||||
* [Node Daemon] Fixes an ordering issue with pvcnoded.service
|
* [Node Daemon] Fixes an ordering issue with pvcnoded.service
|
||||||
|
|
|
@ -48,7 +48,7 @@ import re
|
||||||
import json
|
import json
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = "0.9.45"
|
version = "0.9.46"
|
||||||
|
|
||||||
|
|
||||||
##########################################################
|
##########################################################
|
||||||
|
|
Loading…
Reference in New Issue