diff --git a/Dockerfile b/Dockerfile index 0d3d9d5..9bd7fd9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ LABEL MAINTAINER="Pradeep Bashyal" WORKDIR /app -ARG PY_ARD_VERSION=1.0.1 +ARG PY_ARD_VERSION=1.0.2 COPY requirements.txt /app RUN pip install --no-cache-dir --upgrade pip && \ diff --git a/api-spec.yaml b/api-spec.yaml index 1dd78dd..db03b99 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.1" + version: "1.0.2" servers: - url: 'http://localhost:8080' tags: diff --git a/pyard/__init__.py b/pyard/__init__.py index f1cb5ce..bf755f8 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.1" +__version__ = "1.0.2" def init( diff --git a/scripts/pyard b/scripts/pyard index 5c02bb9..507d35f 100755 --- a/scripts/pyard +++ b/scripts/pyard @@ -116,5 +116,4 @@ if __name__ == "__main__": sys.exit(2) else: # Remove ard and close db connection - print("Removing") del ard diff --git a/setup.cfg b/setup.cfg index ede7a49..cd78a33 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.1 +current_version = 1.0.2 commit = True tag = True diff --git a/setup.py b/setup.py index 5cdc88f..c7be557 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ setup( name="py-ard", - version="1.0.1", + version="1.0.2", description="ARD reduction for HLA with Python", long_description=readme, long_description_content_type="text/markdown",