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

chore: release version 0.6.0 #89

Merged
merged 2 commits into from
Dec 18, 2023
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>io.numaproj.numaflow</groupId>
<artifactId>numaflow-java</artifactId>
<version>0.5.6</version>
<version>0.6.0</version>
</dependency>
```

Expand All @@ -35,7 +35,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:

```groovy
compile "io.numaproj.numaflow:numaflow-java:0.5.5"
compile "io.numaproj.numaflow:numaflow-java:0.6.0"
```

```
Expand Down
2 changes: 1 addition & 1 deletion examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<dependency>
<groupId>io.numaproj.numaflow</groupId>
<artifactId>numaflow-java</artifactId>
<version>0.5.6</version>
<version>0.6.0</version>
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ spec:
sideInputs:
- name: myticker
container:
image: "quay.io/numaio/numaflow-java/sideinput:v0.5.0"
image: "quay.io/numaio/numaflow-java/sideinput:v0.6.0"
imagePullPolicy: Always
trigger:
schedule: "*/2 * * * *"
Expand All @@ -83,7 +83,7 @@ Vertex spec for the UDF vertex:
- name: si-log
udf:
container:
image: "quay.io/numaio/numaflow-java/udf-sideinput:v0.5.0"
image: "quay.io/numaio/numaflow-java/udf-sideinput:v0.6.0"
imagePullPolicy: Always
containerTemplate:
env:
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.numaproj.numaflow</groupId>
<artifactId>numaflow-java</artifactId>
<version>0.5.6</version>
<version>0.6.0</version>
<packaging>jar</packaging>

<name>numaflow-java</name>
Expand All @@ -25,7 +25,7 @@
<protobuf.version>3.21.8</protobuf.version>
<grpc.version>1.59.0</grpc.version>
<netty.version>4.1.100.Final</netty.version> <!-- match version grpc-netty depends on -->
<akka.version>2.7.0</akka.version>
<akka.version>2.8.1</akka.version>
<slf4j.version>2.0.7</slf4j.version>
</properties>

Expand Down
Loading