From 06eacc267849979760ba0bb19145a8b399f31409 Mon Sep 17 00:00:00 2001 From: Saket Choudhary Date: Thu, 16 Apr 2020 02:09:58 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.10.4-dev0=20=E2=86=92=200.1?= =?UTF-8?q?0.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pysradb/__init__.py | 2 +- setup.cfg | 3 +-- setup.py | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/pysradb/__init__.py b/pysradb/__init__.py index 4f9e6104..176ffca9 100644 --- a/pysradb/__init__.py +++ b/pysradb/__init__.py @@ -3,7 +3,7 @@ __author__ = """Saket Choudhary""" __email__ = "saketkc@gmail.com" -__version__ = "0.10.4-dev0" +__version__ = "0.10.4" from .sradb import download_sradb_file from .sradb import SRAdb diff --git a/setup.cfg b/setup.cfg index 11596dbb..c7eabe92 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.4-dev0 +current_version = 0.10.4 commit = True tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+)(?P\d+))? @@ -32,4 +32,3 @@ test = pytest [tool:pytest] collect_ignore = ["setup.py"] - diff --git a/setup.py b/setup.py index 805a1fd8..6363e450 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="0.10.4-dev0", + version="0.10.4", zip_safe=False, )