Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump for next release to 0.8.0 #1672

Merged
merged 1 commit into from
Dec 13, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"

// 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.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