From be3698f52bac668c6bd15c2fa4d7232c1a3e5374 Mon Sep 17 00:00:00 2001 From: Adam Mitchell Date: Mon, 7 Sep 2020 14:27:32 +0100 Subject: [PATCH] Update client-java version (#336) ## What is the goal of this PR? Update docs to reflect latest version for client java: 1.8.3. Also updated the compatibility chart. --- 03-client-api/01-java.md | 2 ++ 08-examples/02-phone-calls-migration-java.md | 4 ++-- dependencies/graknlabs/repositories.bzl | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/03-client-api/01-java.md b/03-client-api/01-java.md index 7fb738366..b2878dcdc 100644 --- a/03-client-api/01-java.md +++ b/03-client-api/01-java.md @@ -174,6 +174,8 @@ To view examples of running various Graql queries using the Grakn Client Java, h | Client Java | Grakn Core | Grakn KGMS | | :---------: | :-------------:| :------------: | +| 1.8.3 | 1.8.0 to 1.8.2 | N/A | +| 1.8.2 | 1.8.0, 1.8.1 | N/A | | 1.8.1 | 1.8.0 | N/A | | 1.8.0 | 1.8.0 | N/A | | 1.7.3 | 1.7.1, 1.7.2 | N/A | diff --git a/08-examples/02-phone-calls-migration-java.md b/08-examples/02-phone-calls-migration-java.md index f5cbc7e9d..28e1be040 100644 --- a/08-examples/02-phone-calls-migration-java.md +++ b/08-examples/02-phone-calls-migration-java.md @@ -60,7 +60,7 @@ Modify `pom.xml` to include the latest version of Grakn Core, Graql and Grakn Cl io.grakn.client grakn-client - 1.6.2 + 1.8.3 @@ -1388,4 +1388,4 @@ Lastly, we ran the `main` method which fired the `connectAndMigrate` method with ## Next -Now that we have some actual data in our knowledge graph, we can go ahead and [query for insights](../08-examples/05-phone-calls-queries.md?tab=java). \ No newline at end of file +Now that we have some actual data in our knowledge graph, we can go ahead and [query for insights](../08-examples/05-phone-calls-queries.md?tab=java). diff --git a/dependencies/graknlabs/repositories.bzl b/dependencies/graknlabs/repositories.bzl index 0a508a064..6f087d9cb 100644 --- a/dependencies/graknlabs/repositories.bzl +++ b/dependencies/graknlabs/repositories.bzl @@ -35,7 +35,7 @@ def graknlabs_client_java(): git_repository( name = "graknlabs_client_java", remote = "https://github.com/graknlabs/client-java", - tag = "1.8.2" # sync-marker: do not remove this comment, this is used for sync-dependencies by @graknlabs_client_java + tag = "1.8.3" # sync-marker: do not remove this comment, this is used for sync-dependencies by @graknlabs_client_java ) def graknlabs_client_python():