Skip to content

Commit

Permalink
Bumped to 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
czgdp1807 committed Nov 14, 2021
1 parent b7a2f24 commit fd8e66c
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-beta'
release = '0.0.1'


# -- 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==0.0.1b0``
``pip install cz-pydatastructs==0.0.1``

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-beta"
__version__ = "0.0.1"

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-beta",
version="0.0.1",
author="PyDataStructs Development Team",
author_email="[email protected]",
description="A python package for data structures",
Expand Down

0 comments on commit fd8e66c

Please sign in to comment.