Skip to content

Commit a2c51c2

Browse files
authored
chore: prepare for releasing 0.9.0 (#158)
Signed-off-by: Keran Yang <[email protected]>
1 parent 8241fdf commit a2c51c2

File tree

4 files changed

+15
-13
lines changed

4 files changed

+15
-13
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Add this dependency to your project's POM:
2626
<dependency>
2727
<groupId>io.numaproj.numaflow</groupId>
2828
<artifactId>numaflow-java</artifactId>
29-
<version>0.8.0</version>
29+
<version>0.9.0</version>
3030
</dependency>
3131
```
3232

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

3737
```groovy
38-
compile "io.numaproj.numaflow:numaflow-java:0.8.0"
38+
compile "io.numaproj.numaflow:numaflow-java:0.9.0"
3939
```
4040

4141
### Build
@@ -74,6 +74,8 @@ WARNING: Unknown channel option 'SO_KEEPALIVE' for channel '[id: 0x6e9c19c7]'
7474
This is due to grpc-netty trying to set SO_KEEPALIVE when it
7575
shouldn't (https://github.com/grpc/grpc-java/blob/47ddfa4f205d4672e035c37349dfd3036c74efb6/netty/src/main/java/io/grpc/netty/NettyClientTransport.java#L237)
7676

77+
It is suggested to use `amazoncorretto:11` as base for your docker image. We observed that without a base image, the java user-defined container can fail the Numaflow health check.
78+
7779
### API Documentation
7880

7981
Please, refer to

examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<dependency>
1818
<groupId>io.numaproj.numaflow</groupId>
1919
<artifactId>numaflow-java</artifactId>
20-
<version>0.8.0</version>
20+
<version>0.9.0</version>
2121
</dependency>
2222

2323
<dependency>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.numaproj.numaflow</groupId>
88
<artifactId>numaflow-java</artifactId>
9-
<version>0.8.0</version>
9+
<version>0.9.0</version>
1010
<packaging>jar</packaging>
1111

1212
<name>numaflow-java</name>

src/main/java/io/numaproj/numaflow/info/ServerInfo.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ public class ServerInfo {
2727
// To update this value, please follow the instructions for MINIMUM_NUMAFLOW_VERSION in
2828
// https://github.com/numaproj/numaflow-rs/blob/main/src/shared.rs
2929
public static final Map<ContainerType, String> MINIMUM_NUMAFLOW_VERSION = Map.ofEntries(
30-
entry(ContainerType.SOURCER, "1.3.1-z"),
31-
entry(ContainerType.SOURCE_TRANSFORMER, "1.3.1-z"),
32-
entry(ContainerType.SINKER, "1.3.1-z"),
33-
entry(ContainerType.MAPPER, "1.3.1-z"),
34-
entry(ContainerType.REDUCER, "1.3.1-z"),
35-
entry(ContainerType.REDUCE_STREAMER, "1.3.1-z"),
36-
entry(ContainerType.SESSION_REDUCER, "1.3.1-z"),
37-
entry(ContainerType.SIDEINPUT, "1.3.1-z"),
38-
entry(ContainerType.FBSINKER, "1.3.1-z")
30+
entry(ContainerType.SOURCER, "1.4.0-z"),
31+
entry(ContainerType.SOURCE_TRANSFORMER, "1.4.0-z"),
32+
entry(ContainerType.SINKER, "1.4.0-z"),
33+
entry(ContainerType.MAPPER, "1.4.0-z"),
34+
entry(ContainerType.REDUCER, "1.4.0-z"),
35+
entry(ContainerType.REDUCE_STREAMER, "1.4.0-z"),
36+
entry(ContainerType.SESSION_REDUCER, "1.4.0-z"),
37+
entry(ContainerType.SIDEINPUT, "1.4.0-z"),
38+
entry(ContainerType.FBSINKER, "1.4.0-z")
3939
);
4040
@JsonProperty("protocol")
4141
private Protocol protocol;

0 commit comments

Comments
 (0)