diff --git a/docs/source/conf.py b/docs/source/conf.py index 95974a93a..ad0f9cda9 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-alpha' +release = '0.0.1-beta' # -- General configuration --------------------------------------------------- diff --git a/docs/source/index.rst b/docs/source/index.rst index 5138f0242..27f7dc72c 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`` +``pip install cz-pydatastructs==0.0.1b0`` Make sure that your python version is at least ``3.5``. diff --git a/pydatastructs/__init__.py b/pydatastructs/__init__.py index 4dad188e0..2692b64ad 100644 --- a/pydatastructs/__init__.py +++ b/pydatastructs/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.0.1-alpha" +__version__ = "0.0.1-beta" from .linear_data_structures import * from .trees import * diff --git a/setup.py b/setup.py index 589c0de98..21ea96c1e 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="cz-pydatastructs", - version="0.0.1-alpha", + version="0.0.1-beta", author="PyDataStructs Development Team", author_email="pydatastructs@googlegroups.com", description="A python package for data structures",