diff --git a/pysradb/__init__.py b/pysradb/__init__.py index ebb59497..03b3dc40 100644 --- a/pysradb/__init__.py +++ b/pysradb/__init__.py @@ -3,7 +3,7 @@ __author__ = """Saket Choudhary""" __email__ = "saketkc@gmail.com" -__version__ = "2.0.1-dev0" +__version__ = "2.0.1" from .filter_attrs import expand_sample_attribute_columns from .geodb import GEOdb diff --git a/setup.cfg b/setup.cfg index bd38bb44..deb081fd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.1-dev0 +current_version = 2.0.1 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 3e1ab61f..c1fa9a7f 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.1-dev0", + version="2.0.1", zip_safe=False, )