diff --git a/README.md b/README.md index 1dd1b14c00..64c49ff943 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Note: If you are in docker container (as root), please remove `--user` from the * We only support Linux (Ubuntu 16.04 or higher) in our current stage. * Run the following commands in an environment that has `python >= 3.5`, `git` and `wget`. ```bash - git clone -b v0.3.3 https://github.com/Microsoft/nni.git + git clone -b v0.3.4 https://github.com/Microsoft/nni.git cd nni source install.sh ``` @@ -47,7 +47,7 @@ Note: If you are in docker container (as root), please remove `--user` from the The following example is an experiment built on TensorFlow. Make sure you have **TensorFlow installed** before running it. * Download the examples via clone the source code. ```bash - git clone -b v0.3.3 https://github.com/Microsoft/nni.git + git clone -b v0.3.4 https://github.com/Microsoft/nni.git ``` * Run the mnist example. ```bash diff --git a/deployment/pypi/setup.py b/deployment/pypi/setup.py index 40cc12c75e..3214261d88 100644 --- a/deployment/pypi/setup.py +++ b/deployment/pypi/setup.py @@ -11,7 +11,7 @@ setuptools.setup( name = 'nni', - version = '0.3.3', + version = '0.3.4', author = 'Microsoft NNI team', author_email = 'nni@microsoft.com', description = 'Neural Network Intelligence package', diff --git a/docs/GetStarted.md b/docs/GetStarted.md index cde8a3cb85..096804da2a 100644 --- a/docs/GetStarted.md +++ b/docs/GetStarted.md @@ -18,7 +18,7 @@ * __Install NNI through source code__ - git clone -b v0.3.3 https://github.com/Microsoft/nni.git + git clone -b v0.3.4 https://github.com/Microsoft/nni.git cd nni source install.sh diff --git a/docs/InstallNNI_Ubuntu.md b/docs/InstallNNI_Ubuntu.md index 3256028db0..d76b09dd86 100644 --- a/docs/InstallNNI_Ubuntu.md +++ b/docs/InstallNNI_Ubuntu.md @@ -16,7 +16,7 @@ * __Install NNI through source code__ - git clone -b v0.3.3 https://github.com/Microsoft/nni.git + git clone -b v0.3.4 https://github.com/Microsoft/nni.git cd nni source install.sh diff --git a/setup.py b/setup.py index 7b8d429776..7f59348054 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ def run(self): setup( name = 'nni', - version = '0.3.3', + version = '0.3.4', author = 'Microsoft NNI Team', author_email = 'nni@microsoft.com', description = 'Neural Network Intelligence project', diff --git a/tools/setup.py b/tools/setup.py index 09dcf23a57..cdb20f32b3 100644 --- a/tools/setup.py +++ b/tools/setup.py @@ -2,7 +2,7 @@ setuptools.setup( name = 'nnictl', - version = '0.3.2', + version = '0.3.4', packages = setuptools.find_packages(exclude=['*test*']), python_requires = '>=3.5',