diff --git a/CHANGELOG.md b/CHANGELOG.md index 4915af54..bec1131e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 1.0.0 - (2021-03-16) + +- Fix bug with caching records in RdfSource +- Add shortcuts for arguments in all CLI operations +- Fix usage in CLI + + ## 1.0.0b0 - (2021-03-11) - Fixed caching bug in RdfSource diff --git a/Dockerfile b/Dockerfile index c2ee9f8a..f71eb5ad 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ MAINTAINER Deepak Unni "deepak.unni3@gmail.com" RUN git clone https://github.com/NCATS-Tangerine/kgx # Setup -RUN cd kgx && git checkout tags/1.0.0b0 && pip install -r requirements.txt && python setup.py install +RUN cd kgx && git checkout tags/1.0.0 && 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 07be3a49..37373097 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -90,9 +90,9 @@ def setup(app): # built documents. # # The short X.Y version. -version = '1.0.0b0' +version = '1.0.0' # The full version, including alpha/beta/rc tags. -release = '1.0.0b0' +release = '1.0.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 3163fbe3..1f356cc5 100644 --- a/kgx/__init__.py +++ b/kgx/__init__.py @@ -1 +1 @@ -__version__ = '1.0.0b0' +__version__ = '1.0.0' diff --git a/setup.py b/setup.py index 427d6a7e..60220489 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ AUTHOR = 'Deepak Unni' EMAIL = 'deepak.unni3@gmail.com' REQUIRES_PYTHON = '>=3.7.0' -VERSION = '1.0.0b0' +VERSION = '1.0.0' LICENSE = 'BSD' with open("requirements.txt", "r") as FH: