Skip to content

Commit

Permalink
Bumped to 0.0.1-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
czgdp1807 committed Oct 31, 2021
1 parent 1f53930 commit b7a2f24
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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``.

Expand Down
2 changes: 1 addition & 1 deletion pydatastructs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.0.1-alpha"
__version__ = "0.0.1-beta"

from .linear_data_structures import *
from .trees import *
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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="[email protected]",
description="A python package for data structures",
Expand Down

0 comments on commit b7a2f24

Please sign in to comment.