You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tz...@apache.org on 2018/12/03 05:27:22 UTC

[flink] branch master updated: [FLINK-10798] Add the version number of Flink 1.7 to MigrationVersion

This is an automated email from the ASF dual-hosted git repository.

tzulitai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/master by this push:
     new 9956bc7  [FLINK-10798] Add the version number of Flink 1.7 to MigrationVersion
9956bc7 is described below

commit 9956bc708426b2ab7b90b92aa1d28ddddc0e1555
Author: yanghua <ya...@gmail.com>
AuthorDate: Tue Nov 6 10:49:55 2018 +0800

    [FLINK-10798] Add the version number of Flink 1.7 to MigrationVersion
    
    This closes #7026.
---
 .../org/apache/flink/streaming/util/migration/MigrationVersion.java    | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/flink-streaming-java/src/test/java/org/apache/flink/streaming/util/migration/MigrationVersion.java b/flink-streaming-java/src/test/java/org/apache/flink/streaming/util/migration/MigrationVersion.java
index 3eb29d4..5ce24ed 100644
--- a/flink-streaming-java/src/test/java/org/apache/flink/streaming/util/migration/MigrationVersion.java
+++ b/flink-streaming-java/src/test/java/org/apache/flink/streaming/util/migration/MigrationVersion.java
@@ -30,7 +30,8 @@ public enum MigrationVersion {
 	v1_3("1.3"),
 	v1_4("1.4"),
 	v1_5("1.5"),
-	v1_6("1.6");
+	v1_6("1.6"),
+	v1_7("1.7");
 
 	private String versionStr;