Skip to content

Commit

Permalink
Bump to 1.0.8 (#292)
Browse files Browse the repository at this point in the history
* Bump version: 1.0.7 → 1.0.8

* Fix --v2-to-v3-mapping failure
  • Loading branch information
pbashyal-nmdp authored Dec 5, 2023
1 parent d43a035 commit 728bc3e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down
2 changes: 1 addition & 1 deletion api-spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion pyard/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion scripts/pyard-import
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.7
current_version = 1.0.8
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 728bc3e

Please sign in to comment.