From 8790792ca5e44022bfc069f3f994c4cd11ebd5c1 Mon Sep 17 00:00:00 2001 From: Devin Smith Date: Thu, 8 Sep 2022 13:18:45 -0700 Subject: [PATCH] Bump to version 0.16.1 --- .../src/main/groovy/io.deephaven.common-conventions.gradle | 2 +- py/client/README.md | 2 +- py/client/pydeephaven/__init__.py | 2 +- py/client/setup.py | 2 +- py/server/deephaven/__init__.py | 2 +- server/jetty-app/README.md | 6 +++--- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/buildSrc/src/main/groovy/io.deephaven.common-conventions.gradle b/buildSrc/src/main/groovy/io.deephaven.common-conventions.gradle index 80036eec3b1..b1a9457e38f 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.16.0' +version = '0.16.1' if (!name.startsWith('deephaven-')) { archivesBaseName = "deephaven-${name}" diff --git a/py/client/README.md b/py/client/README.md index c4ef5199f0a..d2a2711e3f5 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.16.0-py3-none-any.whl +$ pip3 install dist/pydeephaven-0.16.1-py3-none-any.whl ``` ## Quick start diff --git a/py/client/pydeephaven/__init__.py b/py/client/pydeephaven/__init__.py index 002cab8ddbc..57af0b3daf5 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.16.0" +__version__ = "0.16.1" diff --git a/py/client/setup.py b/py/client/setup.py index 8a59d44288c..b08c398a236 100644 --- a/py/client/setup.py +++ b/py/client/setup.py @@ -12,7 +12,7 @@ setup( name='pydeephaven', - version='0.16.0', + version='0.16.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 113f3ad7473..3681c3071f8 100644 --- a/py/server/deephaven/__init__.py +++ b/py/server/deephaven/__init__.py @@ -7,7 +7,7 @@ """ -__version__ = "0.16.0" +__version__ = "0.16.1" from deephaven_internal import jvm try: diff --git a/server/jetty-app/README.md b/server/jetty-app/README.md index bdc2c421294..538d8e12f14 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.16.0 # this should match the current version of your git repo + $ export DEEPHAVEN_VERSION=0.16.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.16.0-cp39-cp39-linux_x86_64.whl # This will vary by version/platform + $ pip install dist/deephaven_jpy-0.16.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.16.0-py2.py3-none-any.whl + $ pip install dist/deephaven-0.16.1-py2.py3-none-any.whl $ cd - ```