Skip to content

Commit

Permalink
Bump to version 0.7.0 (#1531)
Browse files Browse the repository at this point in the history
  • Loading branch information
devinrsmith authored Nov 5, 2021
1 parent 81abc04 commit 92f67ec
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 @@ -50,7 +50,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.6') }},value=latest
type=raw,enable=${{ startsWith(github.ref, 'refs/heads/release/v0.7') }},value=latest
labels: |
org.opencontainers.image.vendor=Deephaven Data Labs
org.opencontainers.image.title=Deephaven Core
Expand Down Expand Up @@ -136,7 +136,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.6') }},value=latest
type=raw,enable=${{ startsWith(github.ref, 'refs/heads/release/v0.7') }},value=latest
labels: |
org.opencontainers.image.vendor=Deephaven Data Labs
org.opencontainers.image.title=Deephaven gRPC Web Proxy
Expand Down Expand Up @@ -218,7 +218,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.6') }},value=latest
type=raw,enable=${{ startsWith(github.ref, 'refs/heads/release/v0.7') }},value=latest
labels: |
org.opencontainers.image.vendor=Deephaven Data Labs
org.opencontainers.image.title=Deephaven Envoy
Expand Down Expand Up @@ -278,7 +278,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.6') }},value=latest
type=raw,enable=${{ startsWith(github.ref, 'refs/heads/release/v0.7') }},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 @@ -90,7 +90,7 @@ idea {
}

ext.versionSource = versionSource
ext.globalVersion = "0.6.0"
ext.globalVersion = "0.7.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.6.0-py3-none-any.whl
$ pip3 install dist/pydeephaven-0.7.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 @@ -29,4 +29,4 @@
from .constants import SortDirection, MatchRule
from .query import Query

__version__ = "0.6.0"
__version__ = "0.7.0"
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.6.0',
version='0.7.0',
description='The Deephaven Python Client',
long_description=README,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 92f67ec

Please sign in to comment.