diff --git a/README.md b/README.md
index 3de87d3fec9b942332873aea13b1baa6ccee9e6e..d480644124790c651b2783b430d6b70b87367771 100644
--- a/README.md
+++ b/README.md
@@ -29,7 +29,7 @@ enrichment of the AI software/hardware application ecosystem.
-For more details please check out our [Architecture Guide](https://www.mindspore.cn/docs/en/0.1.0-alpha/architecture.html).
+For more details please check out our [Architecture Guide](https://www.mindspore.cn/docs/en/0.2.0-alpha/architecture.html).
### Automatic Differentiation
@@ -76,7 +76,7 @@ For installation using `pip`, take `CPU` and `Ubuntu-x86` build version as an ex
1. Download whl from [MindSpore download page](https://www.mindspore.cn/versions/en), and install the package.
```
- pip install https://ms-release.obs.cn-north-4.myhuaweicloud.com/0.1.0-alpha/MindSpore/cpu/ubuntu-x86/mindspore-0.1.0-cp37-cp37m-linux_x86_64.whl
+ pip install https://ms-release.obs.cn-north-4.myhuaweicloud.com/0.2.0-alpha/MindSpore/cpu/ubuntu-x86/mindspore-0.2.0-cp37-cp37m-linux_x86_64.whl
```
2. Run the following command to verify the install.
@@ -96,10 +96,10 @@ currently the containerized build options are supported as follows:
| Hardware Platform | Docker Image Repository | Tag | Description |
| :---------------- | :---------------------- | :-- | :---------- |
-| CPU | `mindspore/mindspore-cpu` | `0.1.0-alpha` | Production environment with pre-installed MindSpore `0.1.0-alpha` CPU release. |
+| CPU | `mindspore/mindspore-cpu` | `0.2.0-alpha` | Production environment with pre-installed MindSpore `0.2.0-alpha` CPU release. |
| | | `devel` | Development environment provided to build MindSpore (with `CPU` backend) from the source, refer to https://www.mindspore.cn/install/en for installation details. |
| | | `runtime` | Runtime environment provided to install MindSpore binary package with `CPU` backend. |
-| GPU | `mindspore/mindspore-gpu` | `0.1.0-alpha` | Production environment with pre-installed MindSpore `0.1.0-alpha` GPU release. |
+| GPU | `mindspore/mindspore-gpu` | `0.2.0-alpha` | Production environment with pre-installed MindSpore `0.2.0-alpha` GPU release. |
| | | `devel` | Development environment provided to build MindSpore (with `GPU CUDA10.1` backend) from the source, refer to https://www.mindspore.cn/install/en for installation details. |
| | | `runtime` | Runtime environment provided to install MindSpore binary package with `GPU` backend. |
| Ascend |
— | — | Coming soon. |
@@ -108,8 +108,8 @@ currently the containerized build options are supported as follows:
For `CPU` backend, you can directly pull and run the image using the below command:
```
- docker pull mindspore/mindspore-cpu:0.1.0-alpha
- docker run -it mindspore/mindspore-cpu:0.1.0-alpha python -c 'import mindspore'
+ docker pull mindspore/mindspore-cpu:0.2.0-alpha
+ docker run -it mindspore/mindspore-cpu:0.2.0-alpha python -c 'import mindspore'
```
* GPU
@@ -126,8 +126,8 @@ currently the containerized build options are supported as follows:
Then you can pull and run the image using the below command:
```
- docker pull mindspore/mindspore-gpu:0.1.0-alpha
- docker run -it --runtime=nvidia --privileged=true mindspore/mindspore-gpu:0.1.0-alpha /bin/bash
+ docker pull mindspore/mindspore-gpu:0.2.0-alpha
+ docker run -it --runtime=nvidia --privileged=true mindspore/mindspore-gpu:0.2.0-alpha /bin/bash
```
To test if the docker image works, please execute the python code below and check the output:
@@ -161,7 +161,7 @@ please check out `docker` folder for the details.
## Quickstart
-See the [Quick Start](https://www.mindspore.cn/tutorial/en/0.1.0-alpha/quick_start/quick_start.html)
+See the [Quick Start](https://www.mindspore.cn/tutorial/en/0.2.0-alpha/quick_start/quick_start.html)
to implement the image classification.
## Docs
diff --git a/RELEASE.md b/RELEASE.md
index ce9064e4b1d7be4dd90aa84159a3902da2f9bae6..265282547c18c3959254340c0257f4fa85b95b60 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -1,4 +1,4 @@
-# Release 0.1.0-alpha
+# Release 0.2.0-alpha
## Main Features
diff --git a/docker/README.md b/docker/README.md
index c6851fe5315c40b914e31615bf8d52c102fe6c27..891a9b07823da0b40069628b90c90c1c556395b0 100644
--- a/docker/README.md
+++ b/docker/README.md
@@ -7,11 +7,11 @@ This folder hosts all the `Dockerfile` to build MindSpore container images with
* CPU
```
- cd mindspore-cpu/0.1.0-alpha && docker build . -t mindspore/mindspore-cpu:0.1.0-alpha
+ cd mindspore-cpu/0.2.0-alpha && docker build . -t mindspore/mindspore-cpu:0.2.0-alpha
```
* GPU
```
- cd mindspore-gpu/0.1.0-alpha && docker build . -t mindspore/mindspore-gpu:0.1.0-alpha
+ cd mindspore-gpu/0.2.0-alpha && docker build . -t mindspore/mindspore-gpu:0.2.0-alpha
```
diff --git a/docker/mindspore-cpu/0.1.0-alpha/Dockerfile b/docker/mindspore-cpu/0.1.0-alpha/Dockerfile
index c9fb7c2b882ec5ffb75335b9e17136961577574c..9524cee745949e18c57297a506fb9857fcbceb9c 100644
--- a/docker/mindspore-cpu/0.1.0-alpha/Dockerfile
+++ b/docker/mindspore-cpu/0.1.0-alpha/Dockerfile
@@ -64,4 +64,4 @@ RUN mkdir -pv /root/.pip \
&& echo "index-url=http://mirrors.aliyun.com/pypi/simple/" >> /root/.pip/pip.conf
# Install MindSpore cpu whl package
-RUN pip install --no-cache-dir https://ms-release.obs.cn-north-4.myhuaweicloud.com/0.1.0-alpha/MindSpore/cpu/ubuntu-x86/mindspore-0.1.0-cp37-cp37m-linux_x86_64.whl
+RUN pip install --no-cache-dir https://ms-release.obs.cn-north-4.myhuaweicloud.com/0.2.0-alpha/MindSpore/cpu/ubuntu-x86/mindspore-0.2.0-cp37-cp37m-linux_x86_64.whl
diff --git a/docker/mindspore-gpu/0.1.0-alpha/Dockerfile b/docker/mindspore-gpu/0.1.0-alpha/Dockerfile
index 50ca2b9f08a757fda91b5c02539c6c9b63a07394..9b59f845f7bec70c3f650ff0853b2705cd84a5e9 100644
--- a/docker/mindspore-gpu/0.1.0-alpha/Dockerfile
+++ b/docker/mindspore-gpu/0.1.0-alpha/Dockerfile
@@ -80,4 +80,4 @@ RUN cd /tmp \
&& rm -f /tmp/openmpi-3.1.5.tar.gz
# Install MindSpore cuda-10.1 whl package
-RUN pip install --no-cache-dir https://ms-release.obs.cn-north-4.myhuaweicloud.com/0.1.0-alpha/MindSpore/gpu/cuda-10.1/mindspore-0.1.0-cp37-cp37m-linux_x86_64.whl
+RUN pip install --no-cache-dir https://ms-release.obs.cn-north-4.myhuaweicloud.com/0.2.0-alpha/MindSpore/gpu/cuda-10.1/mindspore-0.2.0-cp37-cp37m-linux_x86_64.whl