diff --git a/docs/source/conf.py b/docs/source/conf.py index ad0f9cda9..b2c712374 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -26,7 +26,7 @@ master_doc = 'index' # The full version, including alpha/beta/rc tags -release = '0.0.1-beta' +release = '0.0.1' # -- General configuration --------------------------------------------------- diff --git a/docs/source/index.rst b/docs/source/index.rst index 27f7dc72c..4e2bbe094 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -25,7 +25,7 @@ Installation You can install the package by running the following command, -``pip install cz-pydatastructs==0.0.1b0`` +``pip install cz-pydatastructs==0.0.1`` Make sure that your python version is at least ``3.5``. diff --git a/pydatastructs/__init__.py b/pydatastructs/__init__.py index 2692b64ad..120a947fd 100644 --- a/pydatastructs/__init__.py +++ b/pydatastructs/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.0.1-beta" +__version__ = "0.0.1" from .linear_data_structures import * from .trees import * diff --git a/setup.py b/setup.py index 21ea96c1e..fba8997a3 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="cz-pydatastructs", - version="0.0.1-beta", + version="0.0.1", author="PyDataStructs Development Team", author_email="pydatastructs@googlegroups.com", description="A python package for data structures",