From a572e500d93e4ba27d58ee0a0f836fd2d901fc26 Mon Sep 17 00:00:00 2001 From: Jerry Wu Date: Thu, 31 Oct 2019 20:51:35 +0800 Subject: [PATCH] flip version (#2952) --- 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 a1f141cd82b..5b7da16acb2 160000 --- a/core +++ b/core @@ -1 +1 @@ -Subproject commit a1f141cd82b59077f6d5e5234eeb693431a90368 +Subproject commit 5b7da16acb2a4d34e79b015b178a88f05ab574b4 diff --git a/docker/BigDL/Dockerfile b/docker/BigDL/Dockerfile index 9059feef9fb..101d1d0b5ca 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.10.0-SNAPSHOT +ARG BIGDL_VERSION=0.10.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 4b2892feddf..7b5cd99833b 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.10.0-SNAPSHOT +VERSION=0.10.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 d9d683baf58..f5dbb76135b 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.10.0.dev0** +## **Install BigDL-0.10.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.10.0.dev0 # for Python 2.7 -pip3 install BigDL==0.10.0.dev0 # for Python 3.5 and Python 3.6 +pip install BigDL==0.10.0 # for Python 2.7 +pip3 install BigDL==0.10.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 64e8f1f1f36..d5758e06ff1 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.10.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.10.0`, and add below repository to your pom.xml. ```xml diff --git a/pom.xml b/pom.xml index b0c55fb6404..575bd124128 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ com.intel.analytics.bigdl bigdl-parent pom - 0.10.0-SNAPSHOT + 0.10.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 a2f48553578..08bbdebbcfe 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.10.0-SNAPSHOT/#PythonUserGuide/install-from-pip/) -- Optional: check [Run after pip install](https://bigdl-project.github.io/0.10.0-SNAPSHOT/#PythonUserGuide/run-from-pip/) +- [Install from pip](https://bigdl-project.github.io/0.10.0/#PythonUserGuide/install-from-pip/) +- Optional: check [Run after pip install](https://bigdl-project.github.io/0.10.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.10.0-SNAPSHOT/#PythonUserGuide/install-without-pip/) -- Optional: check [Run without pip](https://bigdl-project.github.io/0.10.0-SNAPSHOT/#PythonUserGuide/run-without-pip/) +- [Install without pip](https://bigdl-project.github.io/0.10.0/#PythonUserGuide/install-without-pip/) +- Optional: check [Run without pip](https://bigdl-project.github.io/0.10.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 0e836e0ccd2..0030225cfdd 100644 --- a/pyspark/bigdl/version.py +++ b/pyspark/bigdl/version.py @@ -14,4 +14,4 @@ # limitations under the License. # -__version__ = "0.10.0.dev0" +__version__ = "0.10.0" diff --git a/scripts/download.sh b/scripts/download.sh index 6f88b4e7280..d76c02f3c93 100644 --- a/scripts/download.sh +++ b/scripts/download.sh @@ -23,7 +23,7 @@ HDFS_HOST=$1 set -e -BIGDL_VERSION=0.10.0-SNAPSHOT +BIGDL_VERSION=0.10.0 if [ -d "images" ] then diff --git a/scripts/run.example.sh b/scripts/run.example.sh index e2d3c30c378..de764a5d74c 100644 --- a/scripts/run.example.sh +++ b/scripts/run.example.sh @@ -16,7 +16,7 @@ # limitations under the License. # -BIGDL_VERSION=0.10.0-SNAPSHOT +BIGDL_VERSION=0.10.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 ca71c6eb333..8c28f9e5673 100644 --- a/spark/dist/pom.xml +++ b/spark/dist/pom.xml @@ -5,7 +5,7 @@ spark_bigdl com.intel.analytics.bigdl - 0.10.0-SNAPSHOT + 0.10.0 4.0.0 diff --git a/spark/dl/pom.xml b/spark/dl/pom.xml index 7300d3f6e4a..868a18d022c 100644 --- a/spark/dl/pom.xml +++ b/spark/dl/pom.xml @@ -5,7 +5,7 @@ spark_bigdl com.intel.analytics.bigdl - 0.10.0-SNAPSHOT + 0.10.0 4.0.0 @@ -79,7 +79,7 @@ com.intel.analytics.bigdl.core.dist all - 0.10.0-SNAPSHOT + 0.10.0 ${bigdl-core-all-scope} @@ -319,7 +319,7 @@ com.intel.analytics.bigdl.core.dist ${os-flag} - 0.10.0-SNAPSHOT + 0.10.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 4c2ae8f6684..45e7de41775 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.10.0-SNAPSHOT \ No newline at end of file +version=0.10.0 \ No newline at end of file diff --git a/spark/pom.xml b/spark/pom.xml index cc02193121f..cfe32f1ec80 100644 --- a/spark/pom.xml +++ b/spark/pom.xml @@ -5,7 +5,7 @@ bigdl-parent com.intel.analytics.bigdl - 0.10.0-SNAPSHOT + 0.10.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 da409bd709c..ee7679fead4 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.10.0-SNAPSHOT + 0.10.0 4.0.0 diff --git a/spark/spark-version/2.0/pom.xml b/spark/spark-version/2.0/pom.xml index 027850121b1..9e64f0b991d 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.10.0-SNAPSHOT + 0.10.0 4.0.0 diff --git a/spark/spark-version/pom.xml b/spark/spark-version/pom.xml index 8b91a40e011..b0c294927bf 100644 --- a/spark/spark-version/pom.xml +++ b/spark/spark-version/pom.xml @@ -5,7 +5,7 @@ spark_bigdl com.intel.analytics.bigdl - 0.10.0-SNAPSHOT + 0.10.0 4.0.0