Skip to content

Commit

Permalink
Bump version to 1.0.0a0 in preparation of a release
Browse files Browse the repository at this point in the history
  • Loading branch information
deepakunni3 committed Mar 4, 2021
1 parent 4ffb0fe commit 98630ce
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 1.0.0a0 - (2021-03-04)

- Added Source implementation for reading from various data stores
- Added Sink implementation for writing to various data stores
- Added a simplified Transformer that is agnostic
- Refactor KGX to make use of Sources and Sinks
- Added ability to stream graphs (Thanks to @gregr for the inspiration)


## 0.5.0 - (2021-02-23)

- This is the final release on the 0.x.x
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.5.0 && pip install -r requirements.txt && python setup.py install
RUN cd kgx && git checkout tags/1.0.0a0 && 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 @@ -90,9 +90,9 @@ def setup(app):
# built documents.
#
# The short X.Y version.
version = '1.0.0'
version = '1.0.0a0'
# The full version, including alpha/beta/rc tags.
release = '1.0.0'
release = '1.0.0a0'

# 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 +1 @@
__version__ = '1.0.0-alpha'
__version__ = '1.0.0a0'
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 = '1.0.0-alpha'
VERSION = '1.0.0a0'
LICENSE = 'BSD'

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

0 comments on commit 98630ce

Please sign in to comment.