Skip to content

Commit b942185

Browse files
authored
flip version to 0.12.2 (#3119)
1 parent 725e90e commit b942185

File tree

17 files changed

+22
-22
lines changed

17 files changed

+22
-22
lines changed

core

Submodule core updated from 6fba74b to a042e56

docker/BigDL/Dockerfile

Lines changed: 1 addition & 1 deletion
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.12.2-SNAPSHOT
23+
ARG BIGDL_VERSION=0.12.2
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

Lines changed: 1 addition & 1 deletion
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.12.2-SNAPSHOT
21+
VERSION=0.12.2
2222
BIGDL_HOME=${WORKSPACE}/dist
2323
JAR_HOME=${BIGDL_HOME}/lib/target
2424
SPARK_JAR=/opt/spark/jars/*

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

Lines changed: 1 addition & 1 deletion
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.12.2-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.12.2`, and add below repository to your pom.xml.
3030

3131
```xml
3232
<repository>

pom.xml

Lines changed: 1 addition & 1 deletion
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.12.2-SNAPSHOT</version>
10+
<version>0.12.2</version>
1111

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

pyspark/bigdl/models/textclassifier/README.md

Lines changed: 4 additions & 4 deletions
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.12.2-SNAPSHOT/#PythonUserGuide/install-from-pip/)
32-
- Optional: check [Run after pip install](https://bigdl-project.github.io/0.12.2-SNAPSHOT/#PythonUserGuide/run-from-pip/)
31+
- [Install from pip](https://bigdl-project.github.io/0.12.2/#PythonUserGuide/install-from-pip/)
32+
- Optional: check [Run after pip install](https://bigdl-project.github.io/0.12.2/#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.12.2-SNAPSHOT/#PythonUserGuide/install-without-pip/)
41-
- Optional: check [Run without pip](https://bigdl-project.github.io/0.12.2-SNAPSHOT/#PythonUserGuide/run-without-pip/)
40+
- [Install without pip](https://bigdl-project.github.io/0.12.2/#PythonUserGuide/install-without-pip/)
41+
- Optional: check [Run without pip](https://bigdl-project.github.io/0.12.2/#PythonUserGuide/run-without-pip/)
4242
- Run the following command
4343
```{r, engine='sh'}
4444
PYTHONHASHSEED=0

pyspark/bigdl/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
# limitations under the License.
1515
#
1616

17-
__version__ = "0.12.2.dev1"
17+
__version__ = "0.12.2"

scripts/download.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
HDFS_HOST=$1
2424
set -e
2525

26-
BIGDL_VERSION=0.12.2-SNAPSHOT
26+
BIGDL_VERSION=0.12.2
2727

2828
if [ -d "images" ]
2929
then

scripts/run.example.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# limitations under the License.
1717
#
1818

19-
BIGDL_VERSION=0.12.2-SNAPSHOT
19+
BIGDL_VERSION=0.12.2
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

Lines changed: 1 addition & 1 deletion
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.12.2-SNAPSHOT</version>
8+
<version>0.12.2</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

0 commit comments

Comments
 (0)