Bump version to 0.9.50

This commit is contained in:
Joshua Boniface 2022-07-06 16:01:14 -04:00
parent 92e2ff7449
commit 932b3c55a3
6 changed files with 16 additions and 4 deletions

View File

@ -1 +1 @@
0.9.49 0.9.50

View File

@ -1,5 +1,10 @@
## PVC Changelog ## PVC Changelog
###### [v0.9.50](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.50)
* Adds free memory node selector
* Fixes bug sending space-containing detect disk strings
###### [v0.9.49](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.49) ###### [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] Fixes bugs with OSD stat population on creation

View File

@ -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.49" version = "0.9.50"
# API version # API version
API_VERSION = 1.0 API_VERSION = 1.0

View File

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

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
pvc (0.9.50-0) unstable; urgency=high
* Adds free memory node selector
* Fixes bug sending space-containing detect disk strings
-- Joshua M. Boniface <joshua@boniface.me> Wed, 06 Jul 2022 16:01:14 -0400
pvc (0.9.49-0) unstable; urgency=high pvc (0.9.49-0) unstable; urgency=high
* [Node Daemon] Fixes bugs with OSD stat population on creation * [Node Daemon] Fixes bugs with OSD stat population on creation

View File

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