From 83e9c38a0136f7b0574238b6bd3fb0ad64e4218a Mon Sep 17 00:00:00 2001 From: Ronak Shah Date: Thu, 12 Mar 2020 14:27:45 -0400 Subject: [PATCH] Making proper version --- process_fastq/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/process_fastq/__init__.py b/process_fastq/__init__.py index cbc9ef9..8f85f67 100644 --- a/process_fastq/__init__.py +++ b/process_fastq/__init__.py @@ -4,4 +4,4 @@ __author__ = """Ronak Hasmukh Shah""" __email__ = 'rons.shah@gmail.com' -__version__ = '2.1.2-dev0' +__version__ = '2.1.2' diff --git a/setup.cfg b/setup.cfg index d538262..fb8ebf5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.1.2-dev0 +current_version = 2.1.2 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 42961a8..3aca1c4 100644 --- a/setup.py +++ b/setup.py @@ -58,6 +58,6 @@ test_suite="tests", tests_require=test_requirements, url="https://github.com/rhshah/process_fastq", - version="2.1.2-dev0", + version="2.1.2", zip_safe=False, )