diff --git a/README.md b/README.md index 85e7a811..f6e024a9 100644 --- a/README.md +++ b/README.md @@ -42,9 +42,9 @@ Prepare System: # apt install python3 python3-pip python3-dev # apt install build-essential cmake curl clang-3.9 git zlib1g zlib1g-dev libtinfo-dev -Clone nGraph's `v0.9.0` tag, build and install it into `$HOME/ngraph_dist`: +Clone nGraph's `v0.9.1` tag, build and install it into `$HOME/ngraph_dist`: - $ git clone -b 'v0.9.0' --single-branch --depth 1 https://github.com/NervanaSystems/ngraph.git + $ git clone -b 'v0.9.1' --single-branch --depth 1 https://github.com/NervanaSystems/ngraph.git $ mkdir ngraph/build $ cd ngraph/build $ cmake ../ -DNGRAPH_USE_PREBUILT_LLVM=TRUE -DCMAKE_INSTALL_PREFIX=$HOME/ngraph_dist @@ -84,7 +84,7 @@ If you don't see any errors, nGraph should be installed correctly. You can install ngraph-onnx using pip: - (your_venv) $ pip install git+https://github.com/NervanaSystems/ngraph-onnx/@v0.9.0 + (your_venv) $ pip install git+https://github.com/NervanaSystems/ngraph-onnx/@v0.9.1 ## Usage example diff --git a/setup.py b/setup.py index f13622f4..a29db28a 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import find_packages setup(name='ngraph-onnx', - version='0.9.0', + version='0.9.1', description='ONNX support for ngraph', author='Intel', author_email='intelnervana@intel.com',