diff --git a/pysradb/__init__.py b/pysradb/__init__.py index 60e8429a..4cb59e27 100644 --- a/pysradb/__init__.py +++ b/pysradb/__init__.py @@ -3,7 +3,7 @@ __author__ = """Saket Choudhary""" __email__ = "saketkc@gmail.com" -__version__ = "2.0.0-dev0" +__version__ = "2.0.0" from .filter_attrs import expand_sample_attribute_columns from .geodb import GEOdb diff --git a/setup.cfg b/setup.cfg index 95a49513..0e80b57a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.0-dev0 +current_version = 2.0.0 commit = True tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+)(?P\d+))? diff --git a/setup.py b/setup.py index b7064390..052cc0b1 100644 --- a/setup.py +++ b/setup.py @@ -46,6 +46,6 @@ test_suite="tests", tests_require=test_requirements, url="https://github.com/saketkc/pysradb", - version="2.0.0-dev0", + version="2.0.0", zip_safe=False, )