From dc05094b85ad0fcfe600ca0938d3f7ec6bb5a718 Mon Sep 17 00:00:00 2001 From: Jerry Wu Date: Tue, 26 Mar 2019 19:06:39 +0800 Subject: [PATCH] bump version (#2787) --- 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 4c368d0c238..84243e8773b 160000 --- a/core +++ b/core @@ -1 +1 @@ -Subproject commit 4c368d0c238a55985be6c1cc8324f964d34cf7d0 +Subproject commit 84243e8773ba633d68baf0b9f2898e58fdcd45f2 diff --git a/docker/BigDL/Dockerfile b/docker/BigDL/Dockerfile index 67a855c2ded..19a73b30ea7 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.8.0-SNAPSHOT +ARG BIGDL_VERSION=0.8.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 2adc774b16e..7e23d430c3d 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.8.0-SNAPSHOT +VERSION=0.8.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 2230fc37ada..8b59dbe1e57 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.8.0.dev0** +## **Install BigDL-0.8.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.8.0.dev0 # for Python 2.7 -pip3 install BigDL==0.8.0.dev0 # for Python 3.5 and Python 3.6 +pip install BigDL==0.8.0 # for Python 2.7 +pip3 install BigDL==0.8.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 50e155de455..c4f1df07857 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.8.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.8.0`, and add below repository to your pom.xml. ```xml diff --git a/pom.xml b/pom.xml index 106e1019e71..2e4d10b66e1 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ com.intel.analytics.bigdl bigdl-parent pom - 0.8.0-SNAPSHOT + 0.8.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 3bec22eb35b..8b0d98d192a 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.8.0-SNAPSHOT/#PythonUserGuide/install-from-pip/) -- Optional: check [Run after pip install](https://bigdl-project.github.io/0.8.0-SNAPSHOT/#PythonUserGuide/run-from-pip/) +- [Install from pip](https://bigdl-project.github.io/0.8.0/#PythonUserGuide/install-from-pip/) +- Optional: check [Run after pip install](https://bigdl-project.github.io/0.8.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.8.0-SNAPSHOT/#PythonUserGuide/install-without-pip/) -- Optional: check [Run without pip](https://bigdl-project.github.io/0.8.0-SNAPSHOT/#PythonUserGuide/run-without-pip/) +- [Install without pip](https://bigdl-project.github.io/0.8.0/#PythonUserGuide/install-without-pip/) +- Optional: check [Run without pip](https://bigdl-project.github.io/0.8.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 64e985395d0..41b6da5f8bd 100644 --- a/pyspark/bigdl/version.py +++ b/pyspark/bigdl/version.py @@ -14,4 +14,4 @@ # limitations under the License. # -__version__ = "0.8.0.dev0" +__version__ = "0.8.0" diff --git a/scripts/download.sh b/scripts/download.sh index ada0aabc220..9069bd77e39 100644 --- a/scripts/download.sh +++ b/scripts/download.sh @@ -23,7 +23,7 @@ HDFS_HOST=$1 set -e -BIGDL_VERSION=0.8.0-SNAPSHOT +BIGDL_VERSION=0.8.0 if [ -d "images" ] then diff --git a/scripts/run.example.sh b/scripts/run.example.sh index f3062ecf928..dd462d8e2b1 100644 --- a/scripts/run.example.sh +++ b/scripts/run.example.sh @@ -16,7 +16,7 @@ # limitations under the License. # -BIGDL_VERSION=0.8.0-SNAPSHOT +BIGDL_VERSION=0.8.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 1ba4b689181..68db16c72f3 100644 --- a/spark/dist/pom.xml +++ b/spark/dist/pom.xml @@ -5,7 +5,7 @@ spark_bigdl com.intel.analytics.bigdl - 0.8.0-SNAPSHOT + 0.8.0 4.0.0 diff --git a/spark/dl/pom.xml b/spark/dl/pom.xml index d11a80498f9..6d1641e7e84 100644 --- a/spark/dl/pom.xml +++ b/spark/dl/pom.xml @@ -5,7 +5,7 @@ spark_bigdl com.intel.analytics.bigdl - 0.8.0-SNAPSHOT + 0.8.0 4.0.0 @@ -79,7 +79,7 @@ com.intel.analytics.bigdl.core.dist all - 0.8.0-SNAPSHOT + 0.8.0 ${bigdl-core-all-scope} @@ -314,7 +314,7 @@ com.intel.analytics.bigdl.core.dist ${os-flag} - 0.8.0-SNAPSHOT + 0.8.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 2d9aa85b43e..9b8245beb56 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.8.0-SNAPSHOT \ No newline at end of file +version=0.8.0 \ No newline at end of file diff --git a/spark/pom.xml b/spark/pom.xml index 4bfa14b4887..d17512b7f7a 100644 --- a/spark/pom.xml +++ b/spark/pom.xml @@ -5,7 +5,7 @@ bigdl-parent com.intel.analytics.bigdl - 0.8.0-SNAPSHOT + 0.8.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 fa713405e43..874cc52202b 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.8.0-SNAPSHOT + 0.8.0 4.0.0 diff --git a/spark/spark-version/2.0/pom.xml b/spark/spark-version/2.0/pom.xml index d6c0e6b7c2d..f51ed971ab2 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.8.0-SNAPSHOT + 0.8.0 4.0.0 diff --git a/spark/spark-version/pom.xml b/spark/spark-version/pom.xml index 91943d19268..6d09bb5adae 100644 --- a/spark/spark-version/pom.xml +++ b/spark/spark-version/pom.xml @@ -5,7 +5,7 @@ spark_bigdl com.intel.analytics.bigdl - 0.8.0-SNAPSHOT + 0.8.0 4.0.0