diff --git a/.version b/.version
index 0b6f7506..03b4c752 100644
--- a/.version
+++ b/.version
@@ -1 +1 @@
-0.9.49
+0.9.50
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 294a10f2..934d4cdf 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
 ## 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)
 
   * [Node Daemon] Fixes bugs with OSD stat population on creation
diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py
index 8b5f2f1a..65d70fdf 100755
--- a/api-daemon/pvcapid/Daemon.py
+++ b/api-daemon/pvcapid/Daemon.py
@@ -25,7 +25,7 @@ import yaml
 from distutils.util import strtobool as dustrtobool
 
 # Daemon version
-version = "0.9.49"
+version = "0.9.50"
 
 # API version
 API_VERSION = 1.0
diff --git a/client-cli/setup.py b/client-cli/setup.py
index 820486c6..7b9c256f 100644
--- a/client-cli/setup.py
+++ b/client-cli/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name="pvc",
-    version="0.9.49",
+    version="0.9.50",
     packages=["pvc", "pvc.cli_lib"],
     install_requires=[
         "Click",
diff --git a/debian/changelog b/debian/changelog
index 29c9acd6..2884ecfd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -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
 
   * [Node Daemon] Fixes bugs with OSD stat population on creation
diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py
index cfd5f704..00252dc3 100644
--- a/node-daemon/pvcnoded/Daemon.py
+++ b/node-daemon/pvcnoded/Daemon.py
@@ -48,7 +48,7 @@ import re
 import json
 
 # Daemon version
-version = "0.9.49"
+version = "0.9.50"
 
 
 ##########################################################