Skip to content

Commit

Permalink
Bump version to 1.5.5 in preparation of a release
Browse files Browse the repository at this point in the history
  • Loading branch information
sierra-moxon committed Jan 18, 2022
1 parent e25c99d commit 496934e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Changelog
## 1.5.5 (2022-01-18)
- upgrade neo4j support to neo4j 4.3.0
- enhance logging support

## 1.5.3 (2021-09-14)
- remove pystache requirement

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM python:3.7
MAINTAINER Deepak Unni "[email protected]"
MAINTAINER Sierra Moxon "[email protected]"

# Clone repository
RUN git clone https://github.com/NCATS-Tangerine/kgx

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

# Make data directory
RUN mkdir data
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@ def setup(app):
# built documents.
#
# The short X.Y version.
version = '1.5.4'
version = '1.5.5'
# The full version, including alpha/beta/rc tags.
release = '1.5.4'
release = '1.5.5'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion kgx/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""
KGX Package
"""
__version__ = "1.5.4"
__version__ = "1.5.5"
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, Sierra Moxon, Richard Bruskiewich'
EMAIL = '[email protected], [email protected], [email protected]'
REQUIRES_PYTHON = '>=3.7.0'
VERSION = '1.5.4'
VERSION = '1.5.5'
LICENSE = 'BSD'

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

0 comments on commit 496934e

Please sign in to comment.