Skip to content

Commit

Permalink
Bump to 0.15.1
Browse files Browse the repository at this point in the history
  • Loading branch information
devinrsmith committed Aug 3, 2022
1 parent bfef02c commit 372430d
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = 'io.deephaven'
version = '0.15.0'
version = '0.15.1'

if (!name.startsWith('deephaven-')) {
archivesBaseName = "deephaven-${name}"
Expand Down
2 changes: 1 addition & 1 deletion py/client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion py/client/pydeephaven/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@
from .constants import SortDirection, MatchRule
from .query import Query

__version__ = "0.15.0"
__version__ = "0.15.1"
2 changes: 1 addition & 1 deletion py/client/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion py/server/deephaven/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"""

__version__ = "0.15.0"
__version__ = "0.15.1"

from deephaven_internal import jvm
try:
Expand Down
6 changes: 3 additions & 3 deletions server/jetty-app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 -
```

Expand Down

0 comments on commit 372430d

Please sign in to comment.