Skip to content

Commit 9862c9e

Browse files
authored
bump to 0.5.1 (#1440)
1 parent c286d12 commit 9862c9e

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

docker/zoo/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ MAINTAINER The Analytics-Zoo Authors https://github.com/intel-analytics/analytic
2121
WORKDIR /opt/work
2222

2323
ARG PY_VERSION_3
24-
ARG ANALYTICS_ZOO_VERSION=0.5.0
24+
ARG ANALYTICS_ZOO_VERSION=0.5.1
2525
ARG BIGDL_VERSION=0.8.0
26-
ARG SPARK_VERSION=2.4.0
26+
ARG SPARK_VERSION=2.4.3
2727
ARG RUNTIME_DRIVER_CORES=4
2828
ARG RUNTIME_DRIVER_MEMORY=20g
2929
ARG RUNTIME_EXECUTOR_CORES=4

docs/docs/PythonUserGuide/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ For Python users, Analytics Zoo can be installed either [from pip](#install-from
77
You can use the following command to install the latest release version of __analytics-zoo__ via pip easily:
88

99
```bash
10-
pip install analytics-zoo==0.5.0 # for Python 2.7
11-
pip3 install analytics-zoo==0.5.0 # for Python 3.5 and Python 3.6
10+
pip install analytics-zoo==0.5.1 # for Python 2.7
11+
pip3 install analytics-zoo==0.5.1 # for Python 3.5 and Python 3.6
1212
```
1313

1414
* Note that you might need to add `sudo` if you don't have the permission for installation.

docs/docs/ScalaUserGuide/install.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@
33
You can download the Analytics Zoo release and nightly build from the [Release Page](../release-download.md)
44

55
---
6-
## **Link with Analytics Zoo 0.5.0 Release**
6+
## **Link with Analytics Zoo 0.5.1 Release**
77

88
Currently, Analytics Zoo releases are hosted on maven central; here's an example to add the Analytics Zoo dependency to your own project:
99
```xml
1010
<dependency>
1111
<groupId>com.intel.analytics.zoo</groupId>
12-
<artifactId>analytics-zoo-bigdl_0.8.0-[spark_1.6.2|spark_2.1.1|spark_2.2.0|spark_2.3.1|spark_2.4.0]</artifactId>
13-
<version>0.5.0</version>
12+
<artifactId>analytics-zoo-bigdl_0.8.0-[spark_1.6.2|spark_2.1.1|spark_2.2.0|spark_2.3.1|spark_2.4.3]</artifactId>
13+
<version>0.5.1</version>
1414
</dependency>
1515
```
1616

1717
SBT developers can use
1818
```sbt
19-
libraryDependencies += "com.intel.analytics.zoo" % "analytics-zoo-bigdl_0.7.1-[spark_1.6.2|spark_2.1.1|spark_2.2.0|spark_2.3.1]" % "0.5.0"
19+
libraryDependencies += "com.intel.analytics.zoo" % "analytics-zoo-bigdl_0.8.0-[spark_1.6.2|spark_2.1.1|spark_2.2.0|spark_2.3.1|spark_2.4.3]" % "0.5.1"
2020
```
2121

2222
Remarks:

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>com.intel.analytics.zoo</groupId>
88
<artifactId>zoo-parent</artifactId>
99
<packaging>pom</packaging>
10-
<version>0.5.0</version>
10+
<version>0.5.1</version>
1111

1212
<name>zoo-parent</name>
1313
<description>A distributed analytics library for Apache Spark.</description>

pyzoo/zoo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@
3232
for clz in creator_classes:
3333
JavaCreator.add_creator_class(clz)
3434

35-
__version__ = "0.5.0"
35+
__version__ = "0.5.1"

zoo/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>zoo-parent</artifactId>
99
<groupId>com.intel.analytics.zoo</groupId>
10-
<version>0.5.0</version>
10+
<version>0.5.1</version>
1111
</parent>
1212

1313
<artifactId>analytics-zoo-bigdl_${bigdl.version}-spark_${spark.version}</artifactId>
@@ -120,12 +120,12 @@
120120
<dependency>
121121
<groupId>com.intel.analytics.zoo</groupId>
122122
<artifactId>zoo-core-openvino-java-linux</artifactId>
123-
<version>0.5.0</version>
123+
<version>0.5.1</version>
124124
</dependency>
125125
<dependency>
126126
<groupId>com.intel.analytics.zoo</groupId>
127127
<artifactId>zoo-core-pmem-java-linux</artifactId>
128-
<version>0.5.0</version>
128+
<version>0.5.1</version>
129129
</dependency>
130130
</dependencies>
131131

@@ -142,12 +142,12 @@
142142
<dependency>
143143
<groupId>com.intel.analytics.zoo</groupId>
144144
<artifactId>zoo-core-openvino-java-linux</artifactId>
145-
<version>0.5.0</version>
145+
<version>0.5.1</version>
146146
</dependency>
147147
<dependency>
148148
<groupId>com.intel.analytics.zoo</groupId>
149149
<artifactId>zoo-core-pmem-java-linux</artifactId>
150-
<version>0.5.0</version>
150+
<version>0.5.1</version>
151151
</dependency>
152152
</dependencies>
153153
</profile>

0 commit comments

Comments
 (0)