From fff6b967e3abd736460161d7c0ecf8db6a11e47b Mon Sep 17 00:00:00 2001 From: Xiangyu Wang Date: Mon, 11 Oct 2021 20:58:23 +0800 Subject: [PATCH] Update the documents for 2.0.0rc7 (#750) Signed-off-by: Xiangyu Wang --- README.md | 7 ++++--- docs/source/conf.py | 2 +- docs/source/install.rst | 6 +++--- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 4abdccab0..b2ffaeaed 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,7 @@ The following collection shows Milvus versions and recommended PyMilvus versions | 2.0.0-RC4 | 2.0.0rc4 | | 2.0.0-RC5 | 2.0.0rc5 | | 2.0.0-RC6 | 2.0.0rc6 | +| 2.0.0-RC7 | 2.0.0rc7 | ## Installation @@ -41,7 +42,7 @@ $ pip3 install pymilvus You can install a specific version of PyMilvus by: ```shell -$ pip3 install pymilvus==2.0.0rc6 +$ pip3 install pymilvus==2.0.0rc7 ``` You can upgrade PyMilvus to the latest version by: @@ -53,7 +54,7 @@ $ pip3 install --upgrade pymilvus ## Documentation -Documentation is available online: https://milvus.io/api-reference/pymilvus/v2.0.0rc6/install.html. +Documentation is available online: https://milvus.io/api-reference/pymilvus/v2.0.0rc7/install.html. ## Packages @@ -86,4 +87,4 @@ $ python3 -m pip install --index-url https://test.pypi.org/simple/ pymilvus [mergify]: https://mergify.io -[mergify-status]: https://img.shields.io/endpoint.svg?url=https://gh.mergify.io/badges/milvus-io/pymilvus&style=plastic +[mergify-status]: https://img.shields.io/endpoint.svg?url=https://gh.mergify.io/badges/milvus-io/pymilvus&style=plastic \ No newline at end of file diff --git a/docs/source/conf.py b/docs/source/conf.py index 2bf94b558..2e3e437ee 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -22,7 +22,7 @@ author = 'Milvus' # The full version, including alpha/beta/rc tags -release = '2.0.0rc6' +release = '2.0.0rc7' show_authors = True diff --git a/docs/source/install.rst b/docs/source/install.rst index d62706155..170551a85 100644 --- a/docs/source/install.rst +++ b/docs/source/install.rst @@ -11,7 +11,7 @@ PyMilvus only support python3(>= 3.6), usually, it's ok to install PyMilvus like .. code-block:: shell - $ python3 -m pip install pymilvus==2.0.0rc6 + $ python3 -m pip install pymilvus==2.0.0rc7 Installing in a virtual environment ==================================== @@ -27,7 +27,7 @@ See `virtualenv `_ for more information a $ python3 -m pip install virtualenv $ virtualenv venv $ source venv/bin/activate - (venv) $ pip install pymilvus==2.0.0rc6 + (venv) $ pip install pymilvus==2.0.0rc7 If you want to exit the virtualenv ``venv``, you can use ``deactivate``. @@ -49,7 +49,7 @@ If you want to install a specific version of PyMilvus: .. code-block:: shell - (venv) $ pip install pymilvus==2.0.0rc6 + (venv) $ pip install pymilvus==2.0.0rc7 If you want to upgrade PyMilvus into the latest version published: