Skip to content

Commit 29e1691

Browse files
authored
flip version to 0.11.1 (#3048)
1 parent a51305e commit 29e1691

File tree

17 files changed

+24
-24
lines changed

17 files changed

+24
-24
lines changed

core

Submodule core updated from f74607f to 006a3e3

docker/BigDL/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ MAINTAINER The BigDL Authors https://github.com/intel-analytics/BigDL
2020

2121
WORKDIR /opt/work
2222

23-
ARG BIGDL_VERSION=0.11.1-SNAPSHOT
23+
ARG BIGDL_VERSION=0.11.1
2424
ARG SPARK_VERSION=2.1.1
2525
ENV BIGDL_VERSION_ENV ${BIGDL_VERSION}
2626
ENV SPARK_VERSION_ENV ${SPARK_VERSION}

docs/docs/ProgrammingGuide/quantization-support.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spark jars directory to `SPARK_JAR`.
1818

1919
set -x
2020

21-
VERSION=0.11.1-SNAPSHOT
21+
VERSION=0.11.1
2222
BIGDL_HOME=${WORKSPACE}/dist
2323
JAR_HOME=${BIGDL_HOME}/lib/target
2424
SPARK_JAR=/opt/spark/jars/*

docs/docs/PythonUserGuide/install-from-pip.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
- 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.
88

99

10-
## **Install BigDL-0.11.1.dev0**
10+
## **Install BigDL-0.11.1**
1111

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

@@ -18,6 +18,6 @@ Install BigDL release via pip (we tested this on pip 9.0.1)
1818
- `pyspark` will be automatically installed first before installing BigDL if it hasn't been detected locally.
1919
```bash
2020
pip install --upgrade pip
21-
pip install BigDL==0.11.1.dev0 # for Python 2.7
22-
pip3 install BigDL==0.11.1.dev0 # for Python 3.5 and Python 3.6
21+
pip install BigDL==0.11.1 # for Python 2.7
22+
pip3 install BigDL==0.11.1 # for Python 3.5 and Python 3.6
2323
```

docs/docs/ScalaUserGuide/install-pre-built.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ You can find the optional `${BIGDL_VERSION}` from the [Release Page](../release-
2626

2727
Currently, BigDL development version is hosted on [SonaType](https://oss.sonatype.org/content/groups/public/com/intel/analytics/bigdl/).
2828

29-
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.
29+
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.
3030

3131
```xml
3232
<repository>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>com.intel.analytics.bigdl</groupId>
88
<artifactId>bigdl-parent</artifactId>
99
<packaging>pom</packaging>
10-
<version>0.11.1-SNAPSHOT</version>
10+
<version>0.11.1</version>
1111

1212
<name>BigDL</name>
1313
<description>A distributed deep learning library for Apache Spark.</description>

pyspark/bigdl/models/textclassifier/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,17 @@ $ [/tmp/news20]$ tree . -L 1
2828
- The example code would automatically download the data during the first run.
2929

3030
### Run via pip install
31-
- [Install from pip](https://bigdl-project.github.io/0.11.1-SNAPSHOT/#PythonUserGuide/install-from-pip/)
32-
- Optional: check [Run after pip install](https://bigdl-project.github.io/0.11.1-SNAPSHOT/#PythonUserGuide/run-from-pip/)
31+
- [Install from pip](https://bigdl-project.github.io/0.11.1/#PythonUserGuide/install-from-pip/)
32+
- Optional: check [Run after pip install](https://bigdl-project.github.io/0.11.1/#PythonUserGuide/run-from-pip/)
3333
- Run the following command locally
3434
```
3535
python ${BigDL_HOME}/pyspark/bigdl/models/textclassifier/textclassifier.py --max_epoch 3 --model cnn
3636
3737
```
3838

3939
### Run via spark-submit
40-
- [Install without pip](https://bigdl-project.github.io/0.11.1-SNAPSHOT/#PythonUserGuide/install-without-pip/)
41-
- Optional: check [Run without pip](https://bigdl-project.github.io/0.11.1-SNAPSHOT/#PythonUserGuide/run-without-pip/)
40+
- [Install without pip](https://bigdl-project.github.io/0.11.1/#PythonUserGuide/install-without-pip/)
41+
- Optional: check [Run without pip](https://bigdl-project.github.io/0.11.1/#PythonUserGuide/run-without-pip/)
4242
- Run the following command
4343
```{r, engine='sh'}
4444
PYTHONHASHSEED=0

pyspark/bigdl/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
# limitations under the License.
1515
#
1616

17-
__version__ = "0.11.1.dev0"
17+
__version__ = "0.11.1"

scripts/download.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
HDFS_HOST=$1
2424
set -e
2525

26-
BIGDL_VERSION=0.11.1-SNAPSHOT
26+
BIGDL_VERSION=0.11.1
2727

2828
if [ -d "images" ]
2929
then

scripts/run.example.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# limitations under the License.
1717
#
1818

19-
BIGDL_VERSION=0.11.1-SNAPSHOT
19+
BIGDL_VERSION=0.11.1
2020

2121
SPARK1_DIR=spark-1.6.3-bin-hadoop2.6
2222
SPARK1_LINK=https://www.apache.org/dist/spark/spark-1.6.3/$SPARK1_DIR.tgz

spark/dist/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>spark_bigdl</artifactId>
77
<groupId>com.intel.analytics.bigdl</groupId>
8-
<version>0.11.1-SNAPSHOT</version>
8+
<version>0.11.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

spark/dl/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>spark_bigdl</artifactId>
77
<groupId>com.intel.analytics.bigdl</groupId>
8-
<version>0.11.1-SNAPSHOT</version>
8+
<version>0.11.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -79,7 +79,7 @@
7979
<dependency>
8080
<groupId>com.intel.analytics.bigdl.core.dist</groupId>
8181
<artifactId>all</artifactId>
82-
<version>0.11.1-SNAPSHOT</version>
82+
<version>0.11.1</version>
8383
<scope>${bigdl-core-all-scope}</scope>
8484
</dependency>
8585
<dependency>
@@ -319,7 +319,7 @@
319319
<dependency>
320320
<groupId>com.intel.analytics.bigdl.core.dist</groupId>
321321
<artifactId>${os-flag}</artifactId>
322-
<version>0.11.1-SNAPSHOT</version>
322+
<version>0.11.1</version>
323323
<type>pom</type>
324324
</dependency>
325325
</dependencies>

spark/dl/src/main/resources/bigdl-version-info.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616

1717
#BigDL version info config
1818

19-
version=0.11.1-SNAPSHOT
19+
version=0.11.1

spark/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>bigdl-parent</artifactId>
77
<groupId>com.intel.analytics.bigdl</groupId>
8-
<version>0.11.1-SNAPSHOT</version>
8+
<version>0.11.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

spark/spark-version/1.5-plus/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>spark-version</artifactId>
77
<groupId>com.intel.analytics.bigdl</groupId>
8-
<version>0.11.1-SNAPSHOT</version>
8+
<version>0.11.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

spark/spark-version/2.0/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>spark-version</artifactId>
77
<groupId>com.intel.analytics.bigdl</groupId>
8-
<version>0.11.1-SNAPSHOT</version>
8+
<version>0.11.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

spark/spark-version/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>spark_bigdl</artifactId>
77
<groupId>com.intel.analytics.bigdl</groupId>
8-
<version>0.11.1-SNAPSHOT</version>
8+
<version>0.11.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

0 commit comments

Comments
 (0)