Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump to 0.19.1 hotfix
Browse files Browse the repository at this point in the history
devinrsmith committed Dec 12, 2022
1 parent 8682cad commit 72ef0bc
Showing 7 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ plugins {
}

group = 'io.deephaven'
version = '0.19.0'
version = '0.19.1'

if (!name.startsWith('deephaven-')) {
archivesBaseName = "deephaven-${name}"
2 changes: 1 addition & 1 deletion py/client/README.md
Original file line number Diff line number Diff line change
@@ -35,7 +35,7 @@ $ python3 -m examples.demo_asof_join
```
## Install
``` shell
$ pip3 install dist/pydeephaven-0.19.0-py3-none-any.whl
$ pip3 install dist/pydeephaven-0.19.1-py3-none-any.whl
```
## Quick start

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

__version__ = "0.19.0"
__version__ = "0.19.1"
2 changes: 1 addition & 1 deletion py/client/setup.py
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@

setup(
name='pydeephaven',
version='0.19.0',
version='0.19.1',
description='The Deephaven Python Client',
long_description=README,
long_description_content_type="text/markdown",
2 changes: 1 addition & 1 deletion py/embedded-server/deephaven_server/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# Copyright (c) 2016-2022 Deephaven Data Labs and Patent Pending
#
__version__ = "0.19.0"
__version__ = "0.19.1"

from .start_jvm import DEFAULT_JVM_PROPERTIES, DEFAULT_JVM_ARGS, start_jvm
from .server import Server
2 changes: 1 addition & 1 deletion py/server/deephaven/__init__.py
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@
"""

__version__ = "0.19.0"
__version__ = "0.19.1"

from deephaven_internal import jvm
try:
6 changes: 3 additions & 3 deletions server/jetty-app/README.md
Original file line number Diff line number Diff line change
@@ -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.19.0 # this should match the current version of your git repo
$ export DEEPHAVEN_VERSION=0.19.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.19.0-cp39-cp39-linux_x86_64.whl # This will vary by version/platform
$ pip install dist/deephaven_jpy-0.19.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.19.0-py2.py3-none-any.whl
$ pip install dist/deephaven-0.19.1-py2.py3-none-any.whl
$ cd -
```

0 comments on commit 72ef0bc

Please sign in to comment.