From 6949a3d0178887a19f9cca8417e613004851fb17 Mon Sep 17 00:00:00 2001 From: Sierra Taylor Moxon Date: Mon, 29 Aug 2022 18:29:24 -0700 Subject: [PATCH] Bump version to 1.7.2 in preparation of a release --- CHANGELOG.md | 4 ++++ Dockerfile | 2 +- docs/conf.py | 4 ++-- kgx/__init__.py | 2 +- setup.py | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2407a2b4..8dc05ab3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ # Changelog +## 1.7.0 +- updates to infores usage according to Biolink-model changes +- bug fixes for infores auto-mapping + ## 1.6.2 - allow infores to be submitted via input files and via knowledge_sources click parameter - add some checks for dually submittied primary_knowledge_sources diff --git a/Dockerfile b/Dockerfile index fcbaafdf..dd1d5756 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ MAINTAINER Sierra Moxon "smoxon@lbl.gov" RUN git clone https://github.com/biolink/kgx # Setup -RUN cd kgx && git checkout tags/1.6.0 && pip install -r requirements.txt && python setup.py install +RUN cd kgx && git checkout tags/1.7.2 && pip install -r requirements.txt && python setup.py install # Make data directory RUN mkdir data diff --git a/docs/conf.py b/docs/conf.py index 53ac37a3..d7b11916 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -89,9 +89,9 @@ def setup(app): # built documents. # # The short X.Y version. -version = '1.6.2' +version = '1.7.0' # The full version, including alpha/beta/rc tags. -release = '1.6.2' +release = '1.7.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/kgx/__init__.py b/kgx/__init__.py index c20b49c7..bbda40f6 100644 --- a/kgx/__init__.py +++ b/kgx/__init__.py @@ -1,4 +1,4 @@ """ KGX Package """ -__version__ = "1.6.2" +__version__ = "1.7.0" diff --git a/setup.py b/setup.py index 9f856cb0..e145d812 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ AUTHOR = 'Deepak Unni, Sierra Moxon, Richard Bruskiewich' EMAIL = 'deepak.unni3@gmail.com, smoxon@lbl.gov, richard.bruskiewich@delphinai.com' REQUIRES_PYTHON = '>=3.7.0' -VERSION = '1.6.2' +VERSION = '1.7.2' LICENSE = 'BSD' with open("requirements.txt", "r") as FH: