Skip to content

Commit

Permalink
Bump version to 0.5.0 in preparation of a release
Browse files Browse the repository at this point in the history
  • Loading branch information
deepakunni3 committed Feb 23, 2021
1 parent 8fa5658 commit 2f930dd
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.5.0 - (2021-02-23)

- This is the final release on the 0.x.x
- Added ability to assign a default category in SssomTransformer when the incoming category is invalid
- Added the ability to generate different types of graph summary reports


## 0.4.0 - (2021-02-08)

- Fixed a bug in NtTransformer when parsing malformed triples
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ MAINTAINER Deepak Unni "[email protected]"
RUN git clone https://github.com/NCATS-Tangerine/kgx

# Setup
RUN cd kgx && git checkout tags/0.4.0 && pip install -r requirements.txt && python setup.py install
RUN cd kgx && git checkout tags/0.5.0 && pip install -r requirements.txt && python setup.py install

# Make data directory
RUN mkdir data
Expand Down
2 changes: 1 addition & 1 deletion kgx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
from kgx.prefix_manager import PrefixManager
from kgx.config import get_config

__version__ = '0.4.0'
__version__ = '0.5.0'

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
AUTHOR = 'Deepak Unni'
EMAIL = '[email protected]'
REQUIRES_PYTHON = '>=3.7.0'
VERSION = '0.4.0'
VERSION = '0.5.0'
LICENSE = 'BSD'

with open("requirements.txt", "r") as FH:
Expand Down

0 comments on commit 2f930dd

Please sign in to comment.