Skip to content

Commit

Permalink
flip version to 0.11.1 (#3048)
Browse files Browse the repository at this point in the history
  • Loading branch information
Le-Zheng committed Aug 21, 2020
1 parent a51305e commit 29e1691
Show file tree
Hide file tree
Showing 17 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion docker/BigDL/Dockerfile
Expand Up @@ -20,7 +20,7 @@ MAINTAINER The BigDL Authors https://github.com/intel-analytics/BigDL

WORKDIR /opt/work

ARG BIGDL_VERSION=0.11.1-SNAPSHOT
ARG BIGDL_VERSION=0.11.1
ARG SPARK_VERSION=2.1.1
ENV BIGDL_VERSION_ENV ${BIGDL_VERSION}
ENV SPARK_VERSION_ENV ${SPARK_VERSION}
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/ProgrammingGuide/quantization-support.md
Expand Up @@ -18,7 +18,7 @@ spark jars directory to `SPARK_JAR`.

set -x

VERSION=0.11.1-SNAPSHOT
VERSION=0.11.1
BIGDL_HOME=${WORKSPACE}/dist
JAR_HOME=${BIGDL_HOME}/lib/target
SPARK_JAR=/opt/spark/jars/*
Expand Down
6 changes: 3 additions & 3 deletions docs/docs/PythonUserGuide/install-from-pip.md
Expand Up @@ -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.11.1.dev0**
## **Install BigDL-0.11.1**

Install BigDL release via pip (we tested this on pip 9.0.1)

Expand All @@ -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.11.1.dev0 # for Python 2.7
pip3 install BigDL==0.11.1.dev0 # for Python 3.5 and Python 3.6
pip install BigDL==0.11.1 # for Python 2.7
pip3 install BigDL==0.11.1 # for Python 3.5 and Python 3.6
```
2 changes: 1 addition & 1 deletion docs/docs/ScalaUserGuide/install-pre-built.md
Expand Up @@ -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.11.1-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.11.1`, and add below repository to your pom.xml.

```xml
<repository>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -7,7 +7,7 @@
<groupId>com.intel.analytics.bigdl</groupId>
<artifactId>bigdl-parent</artifactId>
<packaging>pom</packaging>
<version>0.11.1-SNAPSHOT</version>
<version>0.11.1</version>

<name>BigDL</name>
<description>A distributed deep learning library for Apache Spark.</description>
Expand Down
8 changes: 4 additions & 4 deletions pyspark/bigdl/models/textclassifier/README.md
Expand Up @@ -28,17 +28,17 @@ $ [/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.11.1-SNAPSHOT/#PythonUserGuide/install-from-pip/)
- Optional: check [Run after pip install](https://bigdl-project.github.io/0.11.1-SNAPSHOT/#PythonUserGuide/run-from-pip/)
- [Install from pip](https://bigdl-project.github.io/0.11.1/#PythonUserGuide/install-from-pip/)
- Optional: check [Run after pip install](https://bigdl-project.github.io/0.11.1/#PythonUserGuide/run-from-pip/)
- Run the following command locally
```
python ${BigDL_HOME}/pyspark/bigdl/models/textclassifier/textclassifier.py --max_epoch 3 --model cnn
```

### Run via spark-submit
- [Install without pip](https://bigdl-project.github.io/0.11.1-SNAPSHOT/#PythonUserGuide/install-without-pip/)
- Optional: check [Run without pip](https://bigdl-project.github.io/0.11.1-SNAPSHOT/#PythonUserGuide/run-without-pip/)
- [Install without pip](https://bigdl-project.github.io/0.11.1/#PythonUserGuide/install-without-pip/)
- Optional: check [Run without pip](https://bigdl-project.github.io/0.11.1/#PythonUserGuide/run-without-pip/)
- Run the following command
```{r, engine='sh'}
PYTHONHASHSEED=0
Expand Down
2 changes: 1 addition & 1 deletion pyspark/bigdl/version.py
Expand Up @@ -14,4 +14,4 @@
# limitations under the License.
#

__version__ = "0.11.1.dev0"
__version__ = "0.11.1"
2 changes: 1 addition & 1 deletion scripts/download.sh
Expand Up @@ -23,7 +23,7 @@
HDFS_HOST=$1
set -e

BIGDL_VERSION=0.11.1-SNAPSHOT
BIGDL_VERSION=0.11.1

if [ -d "images" ]
then
Expand Down
2 changes: 1 addition & 1 deletion scripts/run.example.sh
Expand Up @@ -16,7 +16,7 @@
# limitations under the License.
#

BIGDL_VERSION=0.11.1-SNAPSHOT
BIGDL_VERSION=0.11.1

SPARK1_DIR=spark-1.6.3-bin-hadoop2.6
SPARK1_LINK=https://www.apache.org/dist/spark/spark-1.6.3/$SPARK1_DIR.tgz
Expand Down
2 changes: 1 addition & 1 deletion spark/dist/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>spark_bigdl</artifactId>
<groupId>com.intel.analytics.bigdl</groupId>
<version>0.11.1-SNAPSHOT</version>
<version>0.11.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
6 changes: 3 additions & 3 deletions spark/dl/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>spark_bigdl</artifactId>
<groupId>com.intel.analytics.bigdl</groupId>
<version>0.11.1-SNAPSHOT</version>
<version>0.11.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down Expand Up @@ -79,7 +79,7 @@
<dependency>
<groupId>com.intel.analytics.bigdl.core.dist</groupId>
<artifactId>all</artifactId>
<version>0.11.1-SNAPSHOT</version>
<version>0.11.1</version>
<scope>${bigdl-core-all-scope}</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -319,7 +319,7 @@
<dependency>
<groupId>com.intel.analytics.bigdl.core.dist</groupId>
<artifactId>${os-flag}</artifactId>
<version>0.11.1-SNAPSHOT</version>
<version>0.11.1</version>
<type>pom</type>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion spark/dl/src/main/resources/bigdl-version-info.properties
Expand Up @@ -16,4 +16,4 @@

#BigDL version info config

version=0.11.1-SNAPSHOT
version=0.11.1
2 changes: 1 addition & 1 deletion spark/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>bigdl-parent</artifactId>
<groupId>com.intel.analytics.bigdl</groupId>
<version>0.11.1-SNAPSHOT</version>
<version>0.11.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion spark/spark-version/1.5-plus/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>spark-version</artifactId>
<groupId>com.intel.analytics.bigdl</groupId>
<version>0.11.1-SNAPSHOT</version>
<version>0.11.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion spark/spark-version/2.0/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>spark-version</artifactId>
<groupId>com.intel.analytics.bigdl</groupId>
<version>0.11.1-SNAPSHOT</version>
<version>0.11.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion spark/spark-version/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>spark_bigdl</artifactId>
<groupId>com.intel.analytics.bigdl</groupId>
<version>0.11.1-SNAPSHOT</version>
<version>0.11.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down

0 comments on commit 29e1691

Please sign in to comment.