diff --git a/pysradb/__init__.py b/pysradb/__init__.py index a3b3a000..fda455e2 100644 --- a/pysradb/__init__.py +++ b/pysradb/__init__.py @@ -3,7 +3,7 @@ __author__ = """Saket Choudhary""" __email__ = "saketkc@gmail.com" -__version__ = "1.4.1-dev0" +__version__ = "1.4.1" from .filter_attrs import expand_sample_attribute_columns from .geodb import GEOdb diff --git a/setup.cfg b/setup.cfg index 65e0d3de..c4e255fc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.4.1-dev0 +current_version = 1.4.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 ef17b03b..c7456e3d 100644 --- a/setup.py +++ b/setup.py @@ -44,6 +44,6 @@ test_suite="tests", tests_require=test_requirements, url="https://github.com/saketkc/pysradb", - version="1.4.1-dev0", + version="1.4.1", zip_safe=False, )