Skip to content

Commit

Permalink
Merge pull request #20 from hkuich/0.1.0
Browse files Browse the repository at this point in the history
 - updated to client-alpha-12 and working now with core-alpha-9
  • Loading branch information
hkuich authored Mar 24, 2021
2 parents bdf52db + b00d351 commit 46fc679
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,9 @@ There is this [example repository](https://github.com/bayer-science-for-a-better

## Compatibility

GraMi version >= 0.1.0 is tested for:
- [grakn-core](https://github.com/graknlabs/grakn) >= 2.0-alpha-6
- [client-java](https://github.com/graknlabs/client-java) >= 2.0.0-alpha-8
GraMi version >= 0.1.0-alpha-12 is tested for:
- [grakn-core](https://github.com/graknlabs/grakn) >= 2.0-alpha-9
- using [client-java](https://github.com/graknlabs/client-java) >= 2.0.0-alpha-12

GraMi version < 0.1.0 is tested for:
- [grakn-core](https://github.com/graknlabs/grakn) >= 1.8.2
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group 'com.github.bayer-science-for-a-better-life'
version '0.1.0-alpha-9'
version '0.1.0-alpha-12'

repositories {
mavenCentral()
Expand All @@ -15,7 +15,7 @@ repositories {
}

dependencies {
compile group: 'io.grakn.client', name: 'grakn-client', version: '2.0.0-alpha-9'
compile group: 'io.grakn.client', name: 'grakn-client', version: '2.0.0-alpha-12'
testCompile group: 'junit', name: 'junit', version: '4.12'
compile 'com.google.code.gson:gson:2.8.6'
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/insert/GraknInserter.java
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public GraknClient getClient() {

private void deleteDatabaseIfExists(GraknClient client) {
if (client.databases().contains(databaseName)) {
client.databases().delete(databaseName);
client.databases().get(databaseName).delete();
}
}

Expand Down

0 comments on commit 46fc679

Please sign in to comment.