Skip to content

Commit

Permalink
Merge pull request #58 from tywtyw/branch-0.2.1
Browse files Browse the repository at this point in the history
upgrade version to 0.2.1
  • Loading branch information
wuchaochen authored May 29, 2020
2 parents 4da60fb + abe5504 commit 0731102
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion flink-ml-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>flink_ai_extended</artifactId>
<groupId>com.alibaba.flink.ml</groupId>
<version>0.2.0</version>
<version>0.2.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion flink-ml-framework/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>flink_ai_extended</artifactId>
<groupId>com.alibaba.flink.ml</groupId>
<version>0.2.0</version>
<version>0.2.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion flink-ml-framework/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def build_extension(self, ext):

setup(
name='flink_ml_framework',
version='0.2.0',
version='0.2.1',
include_package_data=True,
packages=find_packages(),
ext_modules=[CMakeExtension('flink_ml_framework/flink_ml_framework')],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ public class SysUtilTest {

@Test
public void getProjectVersion() {
Assert.assertEquals("0.2.0", SysUtil.getProjectVersion());
Assert.assertEquals("0.2.1", SysUtil.getProjectVersion());
}
}
2 changes: 1 addition & 1 deletion flink-ml-lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>flink_ai_extended</artifactId>
<groupId>com.alibaba.flink.ml</groupId>
<version>0.2.0</version>
<version>0.2.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion flink-ml-operator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>flink_ai_extended</artifactId>
<groupId>com.alibaba.flink.ml</groupId>
<version>0.2.0</version>
<version>0.2.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion flink-ml-pytorch/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>flink_ai_extended</artifactId>
<groupId>com.alibaba.flink.ml</groupId>
<version>0.2.0</version>
<version>0.2.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion flink-ml-tensorflow/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>flink_ai_extended</artifactId>
<groupId>com.alibaba.flink.ml</groupId>
<version>0.2.0</version>
<version>0.2.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
4 changes: 2 additions & 2 deletions flink-ml-tensorflow/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ def build_extension(self, ext):

setup(
name='flink_ml_tensorflow',
version='0.2.0',
version='0.2.1',
include_package_data=True,
packages=find_packages(),
ext_modules=[CMakeExtension('flink_ml_tensorflow/flink_ml_tensorflow')],
cmdclass=dict(build_ext=CMakeBuild),
zip_safe=False,
install_requires = ['tensorflow==1.13.1', 'tensorboard==1.13.1', 'flink_ml_framework==0.2.0'],
install_requires = ['tensorflow==1.13.1', 'tensorboard==1.13.1', 'flink_ml_framework==0.2.1'],
)
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<artifactId>flink_ai_extended</artifactId>
<name>${project.artifactId}</name>
<packaging>pom</packaging>
<version>0.2.0</version>
<version>0.2.1</version>
<description>This project extends support for AI computing framework on Flink</description>
<url>https://github.com/alibaba/flink-ai-extended</url>
<licenses>
Expand Down

0 comments on commit 0731102

Please sign in to comment.