From 8e393fedd425880a26d54407c3f88d087a4c017a Mon Sep 17 00:00:00 2001 From: Saket Choudhary Date: Sat, 18 Mar 2023 18:36:21 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202.0.0=20=E2=86=92=202.0.1-dev?= =?UTF-8?q?0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pysradb/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pysradb/__init__.py b/pysradb/__init__.py index 4cb59e27..ebb59497 100644 --- a/pysradb/__init__.py +++ b/pysradb/__init__.py @@ -3,7 +3,7 @@ __author__ = """Saket Choudhary""" __email__ = "saketkc@gmail.com" -__version__ = "2.0.0" +__version__ = "2.0.1-dev0" from .filter_attrs import expand_sample_attribute_columns from .geodb import GEOdb diff --git a/setup.cfg b/setup.cfg index 0e80b57a..bd38bb44 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.0 +current_version = 2.0.1-dev0 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 052cc0b1..3e1ab61f 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", + version="2.0.1-dev0", zip_safe=False, )