Skip to content

Commit

Permalink
Bump version to 0.5.0 pre-release (#1376)
Browse files Browse the repository at this point in the history
  • Loading branch information
devinrsmith authored Sep 30, 2021
1 parent ba554f7 commit 84c41e7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
tags: |
type=edge,branch=main
type=raw,priority=950,enable=${{ startsWith(github.ref, 'refs/heads/release/v') }},value=${{ steps.semver.outputs.semver }}
type=raw,enable=${{ startsWith(github.ref, 'refs/heads/release/v0.4') }},value=latest
type=raw,enable=${{ startsWith(github.ref, 'refs/heads/release/v0.5') }},value=latest
labels: |
org.opencontainers.image.vendor=Deephaven Data Labs
org.opencontainers.image.title=Deephaven Core
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
tags: |
type=edge,branch=main
type=raw,priority=950,enable=${{ startsWith(github.ref, 'refs/heads/release/v') }},value=${{ steps.semver.outputs.semver }}
type=raw,enable=${{ startsWith(github.ref, 'refs/heads/release/v0.4') }},value=latest
type=raw,enable=${{ startsWith(github.ref, 'refs/heads/release/v0.5') }},value=latest
labels: |
org.opencontainers.image.vendor=Deephaven Data Labs
org.opencontainers.image.title=Deephaven gRPC Web Proxy
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
tags: |
type=edge,branch=main
type=raw,priority=950,enable=${{ startsWith(github.ref, 'refs/heads/release/v') }},value=${{ steps.semver.outputs.semver }}
type=raw,enable=${{ startsWith(github.ref, 'refs/heads/release/v0.4') }},value=latest
type=raw,enable=${{ startsWith(github.ref, 'refs/heads/release/v0.5') }},value=latest
labels: |
org.opencontainers.image.vendor=Deephaven Data Labs
org.opencontainers.image.title=Deephaven Envoy
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:
tags: |
type=edge,branch=main
type=raw,priority=950,enable=${{ startsWith(github.ref, 'refs/heads/release/v') }},value=${{ steps.semver.outputs.semver }}
type=raw,enable=${{ startsWith(github.ref, 'refs/heads/release/v0.4') }},value=latest
type=raw,enable=${{ startsWith(github.ref, 'refs/heads/release/v0.5') }},value=latest
labels: |
org.opencontainers.image.vendor=Deephaven Data Labs
org.opencontainers.image.title=Deephaven Web
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ idea {
}

ext.versionSource = versionSource
ext.globalVersion = "0.4.2"
ext.globalVersion = "0.5.0"

// To set fishlibVersion, go to project-local gradle.properties file
// (or, use the gradle.properties in $USER_HOME/.gradle for a global override)
Expand Down
2 changes: 1 addition & 1 deletion pyclient/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.4.2-py3-none-any.whl
$ pip3 install dist/pydeephaven-0.5.0-py3-none-any.whl
```
## Quick start

Expand Down
2 changes: 1 addition & 1 deletion pyclient/pydeephaven/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@
from ._table_interface import TableInterface
from .query import Query

__version__ = "0.4.2"
__version__ = "0.5.0"
__all__ = ["Session", "Table", "Query", "TableInterface", "ComboAggregation", "DHError", "SortDirection", "MatchRule"]
2 changes: 1 addition & 1 deletion pyclient/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setup(
name='pydeephaven',
version='0.4.2',
version='0.5.0',
description='The Deephaven Python Client',
long_description=README,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 84c41e7

Please sign in to comment.