From 7698e9ee3229548c4a8349d3d7fc296343bc1cff Mon Sep 17 00:00:00 2001 From: Ian Wong Date: Sat, 13 Oct 2018 13:41:07 +0800 Subject: [PATCH] bump version to 0.7.0 (#2653) --- core | 2 +- docker/BigDL/Dockerfile | 2 +- docs/docs/ProgrammingGuide/quantization-support.md | 2 +- docs/docs/PythonUserGuide/install-from-pip.md | 6 +++--- docs/docs/ScalaUserGuide/install-pre-built.md | 2 +- pom.xml | 2 +- pyspark/bigdl/models/textclassifier/README.md | 8 ++++---- pyspark/bigdl/version.py | 2 +- scripts/download.sh | 2 +- scripts/run.example.sh | 2 +- spark/dist/pom.xml | 2 +- spark/dl/pom.xml | 6 +++--- spark/dl/src/main/resources/bigdl-version-info.properties | 2 +- spark/pom.xml | 2 +- spark/spark-version/1.5-plus/pom.xml | 2 +- spark/spark-version/2.0/pom.xml | 2 +- spark/spark-version/pom.xml | 2 +- 17 files changed, 24 insertions(+), 24 deletions(-) diff --git a/core b/core index 13d98960faf..952abd5d84b 160000 --- a/core +++ b/core @@ -1 +1 @@ -Subproject commit 13d98960faf6fd0ae7859b549c622e0567b58e92 +Subproject commit 952abd5d84b3659b975cd88f86a41363e9dbdc44 diff --git a/docker/BigDL/Dockerfile b/docker/BigDL/Dockerfile index a8206e422c8..7189bc60e54 100644 --- a/docker/BigDL/Dockerfile +++ b/docker/BigDL/Dockerfile @@ -20,7 +20,7 @@ MAINTAINER The BigDL Authors https://github.com/intel-analytics/BigDL WORKDIR /opt/work -ARG BIGDL_VERSION=0.7.0-SNAPSHOT +ARG BIGDL_VERSION=0.7.0 ARG SPARK_VERSION=2.1.1 ENV BIGDL_VERSION_ENV ${BIGDL_VERSION} ENV SPARK_VERSION_ENV ${SPARK_VERSION} diff --git a/docs/docs/ProgrammingGuide/quantization-support.md b/docs/docs/ProgrammingGuide/quantization-support.md index b288643b66c..06baff13c15 100644 --- a/docs/docs/ProgrammingGuide/quantization-support.md +++ b/docs/docs/ProgrammingGuide/quantization-support.md @@ -18,7 +18,7 @@ spark jars directory to `SPARK_JAR`. set -x -VERSION=0.7.0-SNAPSHOT +VERSION=0.7.0 BIGDL_HOME=${WORKSPACE}/dist JAR_HOME=${BIGDL_HOME}/lib/target SPARK_JAR=/opt/spark/jars/* diff --git a/docs/docs/PythonUserGuide/install-from-pip.md b/docs/docs/PythonUserGuide/install-from-pip.md index 13c600f35ba..544a5eebcd7 100644 --- a/docs/docs/PythonUserGuide/install-from-pip.md +++ b/docs/docs/PythonUserGuide/install-from-pip.md @@ -7,7 +7,7 @@ - Note that __Python 3.6__ is only compatible with Spark 1.6.4, 2.0.3, 2.1.1 and 2.2.0. See [this issue](https://issues.apache.org/jira/browse/SPARK-19019) for more discussion. -## **Install BigDL-0.7.0.dev0** +## **Install BigDL-0.7.0** Install BigDL release via pip (we tested this on pip 9.0.1) @@ -18,6 +18,6 @@ Install BigDL release via pip (we tested this on pip 9.0.1) - `pyspark` will be automatically installed first before installing BigDL if it hasn't been detected locally. ```bash pip install --upgrade pip -pip install BigDL==0.7.0.dev0 # for Python 2.7 -pip3 install BigDL==0.7.0.dev0 # for Python 3.5 and Python 3.6 +pip install BigDL==0.7.0 # for Python 2.7 +pip3 install BigDL==0.7.0 # for Python 3.5 and Python 3.6 ``` diff --git a/docs/docs/ScalaUserGuide/install-pre-built.md b/docs/docs/ScalaUserGuide/install-pre-built.md index 354f0cce5c8..99f281c32a8 100644 --- a/docs/docs/ScalaUserGuide/install-pre-built.md +++ b/docs/docs/ScalaUserGuide/install-pre-built.md @@ -26,7 +26,7 @@ You can find the optional `${BIGDL_VERSION}` from the [Release Page](../release- Currently, BigDL development version is hosted on [SonaType](https://oss.sonatype.org/content/groups/public/com/intel/analytics/bigdl/). -To link your application with the latest BigDL development version, you should add some dependencies like [Linking with BigDL releases](#link-with-a-release-version), but set `${BIGDL_VERSION}` to `0.7.0-SNAPSHOT`, and add below repository to your pom.xml. +To link your application with the latest BigDL development version, you should add some dependencies like [Linking with BigDL releases](#link-with-a-release-version), but set `${BIGDL_VERSION}` to `0.7.0`, and add below repository to your pom.xml. ```xml diff --git a/pom.xml b/pom.xml index 01b91415597..837dc464b30 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ com.intel.analytics.bigdl bigdl-parent pom - 0.7.0-SNAPSHOT + 0.7.0 BigDL A distributed deep learning library for Apache Spark. diff --git a/pyspark/bigdl/models/textclassifier/README.md b/pyspark/bigdl/models/textclassifier/README.md index bc685129a13..17e1b305d0d 100644 --- a/pyspark/bigdl/models/textclassifier/README.md +++ b/pyspark/bigdl/models/textclassifier/README.md @@ -28,8 +28,8 @@ $ [/tmp/news20]$ tree . -L 1 - The example code would automatically download the data during the first run. ### Run via pip install -- [Install from pip](https://bigdl-project.github.io/0.7.0-SNAPSHOT/#PythonUserGuide/install-from-pip/) -- Optional: check [Run after pip install](https://bigdl-project.github.io/0.7.0-SNAPSHOT/#PythonUserGuide/run-from-pip/) +- [Install from pip](https://bigdl-project.github.io/0.7.0/#PythonUserGuide/install-from-pip/) +- Optional: check [Run after pip install](https://bigdl-project.github.io/0.7.0/#PythonUserGuide/run-from-pip/) - Run the following command locally ``` python ${BigDL_HOME}/pyspark/bigdl/models/textclassifier/textclassifier.py --max_epoch 3 --model cnn @@ -37,8 +37,8 @@ python ${BigDL_HOME}/pyspark/bigdl/models/textclassifier/textclassifier.py --max ``` ### Run via spark-submit -- [Install without pip](https://bigdl-project.github.io/0.7.0-SNAPSHOT/#PythonUserGuide/install-without-pip/) -- Optional: check [Run without pip](https://bigdl-project.github.io/0.7.0-SNAPSHOT/#PythonUserGuide/run-without-pip/) +- [Install without pip](https://bigdl-project.github.io/0.7.0/#PythonUserGuide/install-without-pip/) +- Optional: check [Run without pip](https://bigdl-project.github.io/0.7.0/#PythonUserGuide/run-without-pip/) - Run the following command ```{r, engine='sh'} PYTHONHASHSEED=0 diff --git a/pyspark/bigdl/version.py b/pyspark/bigdl/version.py index 50b4b23a3fb..4e7ee518d96 100644 --- a/pyspark/bigdl/version.py +++ b/pyspark/bigdl/version.py @@ -14,4 +14,4 @@ # limitations under the License. # -__version__ = "0.7.0.dev0" +__version__ = "0.7.0" diff --git a/scripts/download.sh b/scripts/download.sh index a1a5860b3a9..005d23da2f6 100644 --- a/scripts/download.sh +++ b/scripts/download.sh @@ -23,7 +23,7 @@ HDFS_HOST=$1 set -e -BIGDL_VERSION=0.7.0-SNAPSHOT +BIGDL_VERSION=0.7.0 if [ -d "images" ] then diff --git a/scripts/run.example.sh b/scripts/run.example.sh index 613b7ff1bc2..7344f5552a5 100644 --- a/scripts/run.example.sh +++ b/scripts/run.example.sh @@ -16,7 +16,7 @@ # limitations under the License. # -BIGDL_VERSION=0.7.0-SNAPSHOT +BIGDL_VERSION=0.7.0 SPARK1_DIR=spark-1.6.3-bin-hadoop2.6 SPARK1_LINK=https://www.apache.org/dist/spark/spark-1.6.3/$SPARK1_DIR.tgz diff --git a/spark/dist/pom.xml b/spark/dist/pom.xml index e58a6787dd2..42836a81c3f 100644 --- a/spark/dist/pom.xml +++ b/spark/dist/pom.xml @@ -5,7 +5,7 @@ spark_bigdl com.intel.analytics.bigdl - 0.7.0-SNAPSHOT + 0.7.0 4.0.0 diff --git a/spark/dl/pom.xml b/spark/dl/pom.xml index 270a2cbe0e9..b40b5f762b2 100644 --- a/spark/dl/pom.xml +++ b/spark/dl/pom.xml @@ -5,7 +5,7 @@ spark_bigdl com.intel.analytics.bigdl - 0.7.0-SNAPSHOT + 0.7.0 4.0.0 @@ -79,7 +79,7 @@ com.intel.analytics.bigdl.core.dist all - 0.7.0-SNAPSHOT + 0.7.0 ${bigdl-core-all-scope} @@ -314,7 +314,7 @@ com.intel.analytics.bigdl.core.dist ${os-flag} - 0.7.0-SNAPSHOT + 0.7.0 pom diff --git a/spark/dl/src/main/resources/bigdl-version-info.properties b/spark/dl/src/main/resources/bigdl-version-info.properties index 119598350e9..5f373c7da57 100644 --- a/spark/dl/src/main/resources/bigdl-version-info.properties +++ b/spark/dl/src/main/resources/bigdl-version-info.properties @@ -16,4 +16,4 @@ #BigDL version info config -version=0.7.0-SNAPSHOT \ No newline at end of file +version=0.7.0 \ No newline at end of file diff --git a/spark/pom.xml b/spark/pom.xml index e13294f5a94..5d7371794f2 100644 --- a/spark/pom.xml +++ b/spark/pom.xml @@ -5,7 +5,7 @@ bigdl-parent com.intel.analytics.bigdl - 0.7.0-SNAPSHOT + 0.7.0 4.0.0 diff --git a/spark/spark-version/1.5-plus/pom.xml b/spark/spark-version/1.5-plus/pom.xml index f6aae4b13a2..713eeeba222 100644 --- a/spark/spark-version/1.5-plus/pom.xml +++ b/spark/spark-version/1.5-plus/pom.xml @@ -5,7 +5,7 @@ spark-version com.intel.analytics.bigdl - 0.7.0-SNAPSHOT + 0.7.0 4.0.0 diff --git a/spark/spark-version/2.0/pom.xml b/spark/spark-version/2.0/pom.xml index 3680ab0cd97..78243fec84e 100644 --- a/spark/spark-version/2.0/pom.xml +++ b/spark/spark-version/2.0/pom.xml @@ -5,7 +5,7 @@ spark-version com.intel.analytics.bigdl - 0.7.0-SNAPSHOT + 0.7.0 4.0.0 diff --git a/spark/spark-version/pom.xml b/spark/spark-version/pom.xml index bc754938193..3432930eb7b 100644 --- a/spark/spark-version/pom.xml +++ b/spark/spark-version/pom.xml @@ -5,7 +5,7 @@ spark_bigdl com.intel.analytics.bigdl - 0.7.0-SNAPSHOT + 0.7.0 4.0.0