Skip to content

Commit

Permalink
Post release bump to 0.27.0 (#4152)
Browse files Browse the repository at this point in the history
  • Loading branch information
devinrsmith committed Jul 11, 2023
1 parent b4b1549 commit 0622425
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
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.26.0-all.jar io.deephaven.auth.codegen.GenerateContextualAuthWiring
java -cp authorization-codegen/build/libs/deephaven-authorization-codegen-0.27.0-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.26.0-all.jar io.deephaven.auth.codegen.GenerateServiceAuthWiring
java -cp authorization-codegen/build/libs/deephaven-authorization-codegen-0.27.0-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.26.0'
version = '0.27.0'

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 @@ -59,7 +59,7 @@ CFLAGS="-I${DHCPP}/local/deephaven/include" LDFLAGS="-L${DHCPP}/local/deephaven/
Install the package with a command like

```
pip install --force --no-deps dist/pydeephaven_ticking-0.26.0-cp310-cp310-linux_x86_64.whl
pip install --force --no-deps dist/pydeephaven_ticking-0.27.0-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.26.0.dev',
version='0.27.0.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.26.0']
install_requires=['pydeephaven==0.27.0']
)
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.26.0-py3-none-any.whl
$ pip3 install dist/pydeephaven-0.27.0-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 @@ -34,4 +34,4 @@
pass

__all__ = ["Session", "DHError", "SortDirection"]
__version__ = "0.26.0"
__version__ = "0.27.0"
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.26.0',
version='0.27.0',
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.26.0"
__version__ = "0.27.0"

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.26.0"
__version__ = "0.27.0"

from deephaven_internal import jvm

Expand Down

0 comments on commit 0622425

Please sign in to comment.