From ed3d73594ac3344bf65d740675eabfdef96045a1 Mon Sep 17 00:00:00 2001 From: Julian Minder Date: Fri, 10 Jun 2022 13:26:49 +0200 Subject: [PATCH] Version 0.5.1 --- README.md | 10 +++++----- setup.py | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 8dd03cd..facef4b 100644 --- a/README.md +++ b/README.md @@ -13,9 +13,9 @@ The library is built specifically for converting data into a [neo4j](https://neo Note: The [py2neo](https://py2neo.org/2021.1/index.html) library does not support parallel relations of the same type (same source, same target and same type). If your graph requires such parallel relations please checkout the provided [py2neo extensions](/docs/documentation.md#py2neo-extensions). ## Installation -If you have setup a private ssh key for your github, copy-paste the command below to install the latest version ([v0.5.0][latest_tag]): +If you have setup a private ssh key for your github, copy-paste the command below to install the latest version ([v0.5.1][latest_tag]): ``` -$ pip install git+ssh://git@github.com/sg-dev/rel2graph@v0.5.0 +$ pip install git+ssh://git@github.com/sg-dev/rel2graph@v0.5.1 ``` If you don't have ssh set up, download the latest wheel [here][latest_wheel] and install the wheel with: @@ -87,7 +87,7 @@ converter() # Known issues If you encounter a bug or an unexplainable behavior, please check the [known issues](https://github.com/sg-dev/rel2graph/labels/bug) list. If your issue is not found, submit a new one. -[latest_version]: v0.5.0 -[latest_tag]: https://github.com/sg-dev/rel2graph/releases/tag/v0.5.0 -[latest_wheel]: https://github.com/sg-dev/rel2graph/releases/download/v0.5.0/rel2graph-0.5.0-py3-none-any.whl +[latest_version]: v0.5.1 +[latest_tag]: https://github.com/sg-dev/rel2graph/releases/tag/v0.5.1 +[latest_wheel]: https://github.com/sg-dev/rel2graph/releases/download/v0.5.1/rel2graph-0.5.1-py3-none-any.whl [wiki]: docs/old/documentation.md diff --git a/setup.py b/setup.py index eff3ec7..ca12253 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name = "rel2graph", packages = find_packages(), - version = "0.5.0", + version = "0.5.1", description = "Library for converting relational data into graph data (neo4j)", author = "Julian Minder", author_email = "jminder@ethz.ch",