From 250766de34372d12edbc73bfe401099f142b3366 Mon Sep 17 00:00:00 2001 From: Saket Choudhary Date: Thu, 23 Feb 2023 17:15:15 -0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202.0.0-dev0=20=E2=86=92=202.0.?= =?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 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, )