diff --git a/buildSrc/src/main/groovy/io.deephaven.common-conventions.gradle b/buildSrc/src/main/groovy/io.deephaven.common-conventions.gradle
index df05ff667f1..5a994b67fa9 100644
--- a/buildSrc/src/main/groovy/io.deephaven.common-conventions.gradle
+++ b/buildSrc/src/main/groovy/io.deephaven.common-conventions.gradle
@@ -4,7 +4,7 @@ plugins {
 }
 
 group = 'io.deephaven'
-version = '0.15.0'
+version = '0.15.1'
 
 if (!name.startsWith('deephaven-')) {
     archivesBaseName = "deephaven-${name}"
diff --git a/py/client/README.md b/py/client/README.md
index efd795101ef..aa0c9c3d432 100644
--- a/py/client/README.md
+++ b/py/client/README.md
@@ -35,7 +35,7 @@ $ python3 -m examples.demo_asof_join
 ```
 ## Install
 ``` shell
-$ pip3 install dist/pydeephaven-0.15.0-py3-none-any.whl
+$ pip3 install dist/pydeephaven-0.15.1-py3-none-any.whl
 ```
 ## Quick start
 
diff --git a/py/client/pydeephaven/__init__.py b/py/client/pydeephaven/__init__.py
index eae0facaf70..4dc74c2aedf 100644
--- a/py/client/pydeephaven/__init__.py
+++ b/py/client/pydeephaven/__init__.py
@@ -30,4 +30,4 @@
 from .constants import SortDirection, MatchRule
 from .query import Query
 
-__version__ = "0.15.0"
+__version__ = "0.15.1"
diff --git a/py/client/setup.py b/py/client/setup.py
index 389bf984c03..7d25258c88b 100644
--- a/py/client/setup.py
+++ b/py/client/setup.py
@@ -12,7 +12,7 @@
 
 setup(
     name='pydeephaven',
-    version='0.15.0',
+    version='0.15.1',
     description='The Deephaven Python Client',
     long_description=README,
     long_description_content_type="text/markdown",
diff --git a/py/server/deephaven/__init__.py b/py/server/deephaven/__init__.py
index f60aae3125e..decbf24469e 100644
--- a/py/server/deephaven/__init__.py
+++ b/py/server/deephaven/__init__.py
@@ -7,7 +7,7 @@
 
 """
 
-__version__ = "0.15.0"
+__version__ = "0.15.1"
 
 from deephaven_internal import jvm
 try:
diff --git a/server/jetty-app/README.md b/server/jetty-app/README.md
index bcb48491482..782df76f89d 100644
--- a/server/jetty-app/README.md
+++ b/server/jetty-app/README.md
@@ -24,17 +24,17 @@ be sure to first set `PYTHON_CONFIGURE_OPTS="--enabled-shared"`.
     ```shell
     $ python -m pip install --upgrade pip # First upgrade pip
     $ pip install wheel
-    $ export DEEPHAVEN_VERSION=0.15.0 # this should match the current version of your git repo
+    $ export DEEPHAVEN_VERSION=0.15.1 # this should match the current version of your git repo
 
     $ cd py/jpy
     $ export JAVA_HOME=/path/to/your/java/home # Customize this to fit your computer
     $ python setup.py bdist_wheel
-    $ pip install dist/deephaven_jpy-0.15.0-cp39-cp39-linux_x86_64.whl # This will vary by version/platform
+    $ pip install dist/deephaven_jpy-0.15.1-cp39-cp39-linux_x86_64.whl # This will vary by version/platform
     $ cd -
 
     $ cd Integrations/python
     $ python setup.py bdist_wheel
-    $ pip install dist/deephaven-0.15.0-py2.py3-none-any.whl
+    $ pip install dist/deephaven-0.15.1-py2.py3-none-any.whl
     $ cd -
     ```