Skip to content

Commit

Permalink
Bump for next release to 0.8.0 (#1672)
Browse files Browse the repository at this point in the history
  • Loading branch information
devinrsmith authored Dec 13, 2021
1 parent 017c6eb commit 165bf90
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 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.7') }},value=latest
type=raw,enable=${{ startsWith(github.ref, 'refs/heads/release/v0.8') }},value=latest
type=ref,event=branch
labels: |
org.opencontainers.image.vendor=Deephaven Data Labs
Expand Down Expand Up @@ -137,7 +137,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.7') }},value=latest
type=raw,enable=${{ startsWith(github.ref, 'refs/heads/release/v0.8') }},value=latest
type=ref,event=branch
labels: |
org.opencontainers.image.vendor=Deephaven Data Labs
Expand Down Expand Up @@ -221,7 +221,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.7') }},value=latest
type=raw,enable=${{ startsWith(github.ref, 'refs/heads/release/v0.8') }},value=latest
type=ref,event=branch
labels: |
org.opencontainers.image.vendor=Deephaven Data Labs
Expand Down Expand Up @@ -283,7 +283,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.7') }},value=latest
type=raw,enable=${{ startsWith(github.ref, 'refs/heads/release/v0.8') }},value=latest
type=ref,event=branch
labels: |
org.opencontainers.image.vendor=Deephaven Data Labs
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.7.0"
ext.globalVersion = "0.8.0"

Set<Project> modsAreBasic = subprojects.findAll {it.name in [
'deephaven-wheel',
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.7.0-py3-none-any.whl
$ pip3 install dist/pydeephaven-0.8.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.7.0"
__version__ = "0.8.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.7.0',
version='0.8.0',
description='The Deephaven Python Client',
long_description=README,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion pyintegration/deephaven2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"""
import jpy

__version__ = "0.7.0"
__version__ = "0.8.0"

if not jpy.has_jvm():
from ._utils.bootstrap import build_py_session
Expand Down

0 comments on commit 165bf90

Please sign in to comment.