From 9cc9712bd8deaa50b0ac9ac6d6798acadb3cc44c Mon Sep 17 00:00:00 2001 From: Pradeep Bashyal Date: Thu, 9 Nov 2023 09:58:43 -0600 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.0.6=20=E2=86=92=201.0.7=20(?= =?UTF-8?q?#284)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- api-spec.yaml | 2 +- pyard/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8b68907..38ea7ce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ LABEL MAINTAINER="Pradeep Bashyal" WORKDIR /app -ARG PY_ARD_VERSION=1.0.6 +ARG PY_ARD_VERSION=1.0.7 COPY requirements.txt /app RUN pip install --no-cache-dir --upgrade pip && \ diff --git a/api-spec.yaml b/api-spec.yaml index e6eeb34..b10cfe2 100644 --- a/api-spec.yaml +++ b/api-spec.yaml @@ -2,7 +2,7 @@ openapi: 3.0.3 info: title: ARD Reduction description: Reduce to ARD Level - version: "1.0.6" + version: "1.0.7" servers: - url: 'http://localhost:8080' tags: diff --git a/pyard/__init__.py b/pyard/__init__.py index 05f96f0..1496d5c 100644 --- a/pyard/__init__.py +++ b/pyard/__init__.py @@ -27,7 +27,7 @@ from .misc import get_imgt_db_versions as db_versions __author__ = """NMDP Bioinformatics""" -__version__ = "1.0.6" +__version__ = "1.0.7" def init( diff --git a/setup.cfg b/setup.cfg index d0b4c39..5fbebee 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.6 +current_version = 1.0.7 commit = True tag = True diff --git a/setup.py b/setup.py index 46f7de5..ee7ac39 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ setup( name="py-ard", - version="1.0.6", + version="1.0.7", description="ARD reduction for HLA with Python", long_description=readme, long_description_content_type="text/markdown",