Skip to content

Commit

Permalink
bump to 0.5.1 (#1440)
Browse files Browse the repository at this point in the history
  • Loading branch information
glorysdj authored Jun 10, 2019
1 parent c286d12 commit 9862c9e
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions docker/zoo/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ MAINTAINER The Analytics-Zoo Authors https://github.com/intel-analytics/analytic
WORKDIR /opt/work

ARG PY_VERSION_3
ARG ANALYTICS_ZOO_VERSION=0.5.0
ARG ANALYTICS_ZOO_VERSION=0.5.1
ARG BIGDL_VERSION=0.8.0
ARG SPARK_VERSION=2.4.0
ARG SPARK_VERSION=2.4.3
ARG RUNTIME_DRIVER_CORES=4
ARG RUNTIME_DRIVER_MEMORY=20g
ARG RUNTIME_EXECUTOR_CORES=4
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/PythonUserGuide/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ For Python users, Analytics Zoo can be installed either [from pip](#install-from
You can use the following command to install the latest release version of __analytics-zoo__ via pip easily:

```bash
pip install analytics-zoo==0.5.0 # for Python 2.7
pip3 install analytics-zoo==0.5.0 # for Python 3.5 and Python 3.6
pip install analytics-zoo==0.5.1 # for Python 2.7
pip3 install analytics-zoo==0.5.1 # for Python 3.5 and Python 3.6
```

* Note that you might need to add `sudo` if you don't have the permission for installation.
Expand Down
8 changes: 4 additions & 4 deletions docs/docs/ScalaUserGuide/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@
You can download the Analytics Zoo release and nightly build from the [Release Page](../release-download.md)

---
## **Link with Analytics Zoo 0.5.0 Release**
## **Link with Analytics Zoo 0.5.1 Release**

Currently, Analytics Zoo releases are hosted on maven central; here's an example to add the Analytics Zoo dependency to your own project:
```xml
<dependency>
<groupId>com.intel.analytics.zoo</groupId>
<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>
<version>0.5.0</version>
<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>
<version>0.5.1</version>
</dependency>
```

SBT developers can use
```sbt
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"
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"
```

Remarks:
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.intel.analytics.zoo</groupId>
<artifactId>zoo-parent</artifactId>
<packaging>pom</packaging>
<version>0.5.0</version>
<version>0.5.1</version>

<name>zoo-parent</name>
<description>A distributed analytics library for Apache Spark.</description>
Expand Down
2 changes: 1 addition & 1 deletion pyzoo/zoo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@
for clz in creator_classes:
JavaCreator.add_creator_class(clz)

__version__ = "0.5.0"
__version__ = "0.5.1"
10 changes: 5 additions & 5 deletions zoo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>zoo-parent</artifactId>
<groupId>com.intel.analytics.zoo</groupId>
<version>0.5.0</version>
<version>0.5.1</version>
</parent>

<artifactId>analytics-zoo-bigdl_${bigdl.version}-spark_${spark.version}</artifactId>
Expand Down Expand Up @@ -120,12 +120,12 @@
<dependency>
<groupId>com.intel.analytics.zoo</groupId>
<artifactId>zoo-core-openvino-java-linux</artifactId>
<version>0.5.0</version>
<version>0.5.1</version>
</dependency>
<dependency>
<groupId>com.intel.analytics.zoo</groupId>
<artifactId>zoo-core-pmem-java-linux</artifactId>
<version>0.5.0</version>
<version>0.5.1</version>
</dependency>
</dependencies>

Expand All @@ -142,12 +142,12 @@
<dependency>
<groupId>com.intel.analytics.zoo</groupId>
<artifactId>zoo-core-openvino-java-linux</artifactId>
<version>0.5.0</version>
<version>0.5.1</version>
</dependency>
<dependency>
<groupId>com.intel.analytics.zoo</groupId>
<artifactId>zoo-core-pmem-java-linux</artifactId>
<version>0.5.0</version>
<version>0.5.1</version>
</dependency>
</dependencies>
</profile>
Expand Down

0 comments on commit 9862c9e

Please sign in to comment.