Bump version to 0.9.49

This commit is contained in:
Joshua Boniface 2022-05-06 15:49:39 -04:00
parent c401a1f655
commit 51ad2058ed
6 changed files with 22 additions and 4 deletions

View File

@ -1 +1 @@
0.9.48
0.9.49

View File

@ -1,5 +1,13 @@
## PVC Changelog
###### [v0.9.49](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.49)
* [Node Daemon] Fixes bugs with OSD stat population on creation
* [Node Daemon/API] Adds additional information to Zookeeper about OSDs
* [Node Daemon] Refactors OSD removal for improved safety
* [Node Daemon/API/CLI] Adds explicit support for replacing and refreshing (reimporting) OSDs
* [API/CLI] Fixes a language inconsistency about "router mode"
###### [v0.9.48](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.48)
* [CLI] Fixes situation where only a single cluster is available

View File

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

View File

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

10
debian/changelog vendored
View File

@ -1,3 +1,13 @@
pvc (0.9.49-0) unstable; urgency=high
* [Node Daemon] Fixes bugs with OSD stat population on creation
* [Node Daemon/API] Adds additional information to Zookeeper about OSDs
* [Node Daemon] Refactors OSD removal for improved safety
* [Node Daemon/API/CLI] Adds explicit support for replacing and refreshing (reimporting) OSDs
* [API/CLI] Fixes a language inconsistency about "router mode"
-- Joshua M. Boniface <joshua@boniface.me> Fri, 06 May 2022 15:49:39 -0400
pvc (0.9.48-0) unstable; urgency=high
* [CLI] Fixes situation where only a single cluster is available

View File

@ -48,7 +48,7 @@ import re
import json
# Daemon version
version = "0.9.48"
version = "0.9.49"
##########################################################