You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by zh...@apache.org on 2022/07/26 02:05:28 UTC

[flink-ml] branch master updated: [FLINK-28673] Migrate Flink ML to Flink 1.15.1

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

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


The following commit(s) were added to refs/heads/master by this push:
     new d9bac9a  [FLINK-28673] Migrate Flink ML to Flink 1.15.1
d9bac9a is described below

commit d9bac9a44812d6eca145112f4901ceaf484ba014
Author: yunfengzhou-hub <yu...@outlook.com>
AuthorDate: Tue Jul 26 10:05:24 2022 +0800

    [FLINK-28673] Migrate Flink ML to Flink 1.15.1
    
    This closes #136.
---
 docs/content/docs/try-flink-ml/build-your-own-project.md | 4 ++--
 flink-ml-python/dev/dev-requirements.txt                 | 2 +-
 flink-ml-python/setup.py                                 | 2 +-
 pom.xml                                                  | 2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/docs/content/docs/try-flink-ml/build-your-own-project.md b/docs/content/docs/try-flink-ml/build-your-own-project.md
index e30c8a6..84a811e 100644
--- a/docs/content/docs/try-flink-ml/build-your-own-project.md
+++ b/docs/content/docs/try-flink-ml/build-your-own-project.md
@@ -45,7 +45,7 @@ make sure the following dependencies also exist in `pom.xml`.
 <dependency>
   <groupId>org.apache.flink</groupId>
   <artifactId>flink-clients</artifactId>
-  <version>1.15.0</version>
+  <version>1.15.1</version>
 </dependency>
 ```
 
@@ -53,7 +53,7 @@ make sure the following dependencies also exist in `pom.xml`.
 <dependency>
   <groupId>org.apache.flink</groupId>
   <artifactId>flink-table-planner-loader</artifactId>
-  <version>1.15.0</version>
+  <version>1.15.1</version>
 </dependency>
 ```
 
diff --git a/flink-ml-python/dev/dev-requirements.txt b/flink-ml-python/dev/dev-requirements.txt
index 1f30ffb..68315a6 100755
--- a/flink-ml-python/dev/dev-requirements.txt
+++ b/flink-ml-python/dev/dev-requirements.txt
@@ -14,7 +14,7 @@
 # limitations under the License.
 setuptools>=18.0
 wheel
-apache-flink==1.15.0
+apache-flink==1.15.1
 pandas>=1.0,<1.2.0
 jsonpickle==2.0.0
 cloudpickle==1.2.2
diff --git a/flink-ml-python/setup.py b/flink-ml-python/setup.py
index e584904..b4047ab 100644
--- a/flink-ml-python/setup.py
+++ b/flink-ml-python/setup.py
@@ -108,7 +108,7 @@ try:
         author='Apache Software Foundation',
         author_email='dev@flink.apache.org',
         python_requires='>=3.6',
-        install_requires=['apache-flink==1.15.0', 'pandas>=1.0,<1.2.0', 'jsonpickle==2.0.0',
+        install_requires=['apache-flink==1.15.1', 'pandas>=1.0,<1.2.0', 'jsonpickle==2.0.0',
                           'cloudpickle==1.2.2', 'numpy>=1.14.3,<1.20'],
         tests_require=['pytest==4.4.1'],
         description='Apache Flink ML Python API',
diff --git a/pom.xml b/pom.xml
index 605da99..0972ddf 100644
--- a/pom.xml
+++ b/pom.xml
@@ -74,7 +74,7 @@ under the License.
     <junit.version>4.13.2</junit.version>
     <flink.forkCount>1C</flink.forkCount>
     <flink.reuseForks>true</flink.reuseForks>
-    <flink.version>1.15.0</flink.version>
+    <flink.version>1.15.1</flink.version>
     <zookeeper.version>3.6.3</zookeeper.version>
     <hadoop.version>2.10.1</hadoop.version>