Skip to content

Commit

Permalink
docs: add instructions on how to update MINIMUM_NUMAFLOW_VERSION (#139)
Browse files Browse the repository at this point in the history
Signed-off-by: Keran Yang <[email protected]>
  • Loading branch information
KeranYang authored Sep 23, 2024
1 parent 11e70d4 commit f66f67c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 0 additions & 2 deletions src/main/java/io/numaproj/numaflow/info/Language.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
* to form a contract between server and clients.
*/
public enum Language {
GO("go"),
PYTHON("python"),
JAVA("java");

private final String name;
Expand Down
4 changes: 3 additions & 1 deletion src/main/java/io/numaproj/numaflow/info/ServerInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@
@AllArgsConstructor
public class ServerInfo {
// Specify the minimum Numaflow version required by the current SDK version
public static final String MINIMUM_NUMAFLOW_VERSION = "1.3.0-rc1";
// To update this value, please follow the instructions for MINIMUM_NUMAFLOW_VERSION in
// https://github.com/numaproj/numaflow-rs/blob/main/src/shared.rs
public static final String MINIMUM_NUMAFLOW_VERSION = "1.3.1-z";
@JsonProperty("protocol")
private Protocol protocol;
@JsonProperty("language")
Expand Down

0 comments on commit f66f67c

Please sign in to comment.