From 728bc3eb674b80af0b4b8878a1607e3e66a4f8ef Mon Sep 17 00:00:00 2001 From: Pradeep Bashyal Date: Tue, 5 Dec 2023 15:06:25 -0600 Subject: [PATCH] Bump to 1.0.8 (#292) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Bump version: 1.0.7 → 1.0.8 * Fix --v2-to-v3-mapping failure --- Dockerfile | 2 +- api-spec.yaml | 2 +- pyard/__init__.py | 2 +- scripts/pyard-import | 2 +- setup.cfg | 2 +- setup.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 38ea7ce..eb4d101 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ LABEL MAINTAINER="Pradeep Bashyal" WORKDIR /app -ARG PY_ARD_VERSION=1.0.7 +ARG PY_ARD_VERSION=1.0.8 COPY requirements.txt /app RUN pip install --no-cache-dir --upgrade pip && \ diff --git a/api-spec.yaml b/api-spec.yaml index ba15f85..3d9fc39 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.7" + version: "1.0.8" servers: - url: 'http://localhost:8080' tags: diff --git a/pyard/__init__.py b/pyard/__init__.py index 1496d5c..39fe97a 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.7" +__version__ = "1.0.8" def init( diff --git a/scripts/pyard-import b/scripts/pyard-import index 6778d36..90eac3c 100755 --- a/scripts/pyard-import +++ b/scripts/pyard-import @@ -144,7 +144,7 @@ if __name__ == "__main__": del ard if v2_to_v3_dict: - db_connection = db.create_db_connection(data_dir, imgt_version, ro=False) + db_connection, _ = db.create_db_connection(data_dir, imgt_version, ro=False) db.save_dict( db_connection, table_name="v2_mapping", diff --git a/setup.cfg b/setup.cfg index 5fbebee..d178781 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.7 +current_version = 1.0.8 commit = True tag = True diff --git a/setup.py b/setup.py index ee7ac39..86281d2 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ setup( name="py-ard", - version="1.0.7", + version="1.0.8", description="ARD reduction for HLA with Python", long_description=readme, long_description_content_type="text/markdown",