Skip to content

Commit

Permalink
Bump to 0.28.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jcferretti committed Sep 16, 2023
1 parent 2356865 commit b824678
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion R/rdeephaven/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: rdeephaven
Type: Package
Title: R Client for Deephaven Core
Version: 0.29.0
Version: 0.28.1
Date: 2023-05-12
Author: Deephaven Data Labs
Maintainer: Alex Peters <alexpeters@deephaven.io>
Expand Down
2 changes: 1 addition & 1 deletion authorization-codegen/protoc-gen-contextual-auth-wiring
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# protoc-gen-contextual-auth-wiring
java -cp authorization-codegen/build/libs/deephaven-authorization-codegen-0.29.0-all.jar io.deephaven.auth.codegen.GenerateContextualAuthWiring
java -cp authorization-codegen/build/libs/deephaven-authorization-codegen-0.28.1-all.jar io.deephaven.auth.codegen.GenerateContextualAuthWiring
2 changes: 1 addition & 1 deletion authorization-codegen/protoc-gen-service-auth-wiring
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# protoc-gen-service-auth-wiring
java -cp authorization-codegen/build/libs/deephaven-authorization-codegen-0.29.0-all.jar io.deephaven.auth.codegen.GenerateServiceAuthWiring
java -cp authorization-codegen/build/libs/deephaven-authorization-codegen-0.28.1-all.jar io.deephaven.auth.codegen.GenerateServiceAuthWiring
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = 'io.deephaven'
version = '0.29.0'
version = '0.28.1'

if (!name.startsWith('deephaven-')) {
archivesBaseName = "deephaven-${name}"
Expand Down
2 changes: 1 addition & 1 deletion py/client-ticking/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Then install the package.
Note the actual name of the `.whl` file may be different depending on system details.

```
pip3 install --force --no-deps dist/pydeephaven_ticking-0.29.0-cp310-cp310-linux_x86_64.whl
pip3 install --force --no-deps dist/pydeephaven_ticking-0.28.1-cp310-cp310-linux_x86_64.whl
```

The reason for the "--force" flag is to overwrite any previously-built version of the package that
Expand Down
4 changes: 2 additions & 2 deletions py/client-ticking/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

setup(
name='pydeephaven-ticking',
version='0.29.0.dev',
version='0.28.1.dev',
description='The Deephaven Python Client for Ticking Tables',
long_description=README,
long_description_content_type="text/markdown",
Expand Down Expand Up @@ -44,5 +44,5 @@
libraries=["dhcore"]
)]),
python_requires='>=3.8',
install_requires=['pydeephaven==0.29.0']
install_requires=['pydeephaven==0.28.1']
)
2 changes: 1 addition & 1 deletion py/client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ $ python3 -m examples.demo_asof_join
Note the actual name of the `.whl` file may be different depending on system details.

``` shell
$ pip3 install dist/pydeephaven-0.29.0-py3-none-any.whl
$ pip3 install dist/pydeephaven-0.28.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 @@ -35,4 +35,4 @@
pass

__all__ = ["Session", "DHError", "SortDirection"]
__version__ = "0.29.0"
__version__ = "0.28.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.29.0',
version='0.28.1',
description='The Deephaven Python Client',
long_description=README,
long_description_content_type="text/markdown",
Expand Down
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.29.0"
__version__ = "0.28.1"

from .start_jvm import DEFAULT_JVM_PROPERTIES, DEFAULT_JVM_ARGS, start_jvm
from .server import Server
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.29.0"
__version__ = "0.28.1"

from deephaven_internal import jvm

Expand Down

0 comments on commit b824678

Please sign in to comment.