Skip to content

Commit

Permalink
chore: release v20.03.1 (#156)
Browse files Browse the repository at this point in the history
release version 20.03.1
  • Loading branch information
abhimanyusinghgaur authored Aug 10, 2020
1 parent 8726bd9 commit efd31f9
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions PUBLISHING.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ ossrhPassword=<…password…>
### Deploying
* Build and test the code that needs to be published.
* Bump version by modifying the `version` variable in `build.gradle` file.
* Update download version in README for both Maven and Gradle.
* Run `./gradlew uploadArchives`.
* Release the deployment by following the steps on the page _Releasing the Deployment_ (link in references below).

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ grab via Maven:
<dependency>
<groupId>io.dgraph</groupId>
<artifactId>dgraph4j</artifactId>
<version>20.03.0</version>
<version>20.03.1</version>
</dependency>
```
or Gradle:
```groovy
compile 'io.dgraph:dgraph4j:20.03.0'
compile 'io.dgraph:dgraph4j:20.03.1'
```

## Supported Versions
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ apply plugin: 'signing'

group = 'io.dgraph'
archivesBaseName = 'dgraph4j'
version = '20.03.0'
version = '20.03.1'
sourceCompatibility = 1.8
targetCompatibility = 1.8

Expand Down
2 changes: 1 addition & 1 deletion samples/DgraphJavaSample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repositories {

dependencies {
// Use Dgraph Java client
compile 'io.dgraph:dgraph4j:2.0.1'
compile 'io.dgraph:dgraph4j:20.03.1'

// Use JUnit test framework
testCompile 'junit:junit:4.12'
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/io/dgraph/DgraphAsyncClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,8 @@ public CompletableFuture<Payload> alter(DgraphProto.Operation op) {
* interacting with.
*
* @return A CompletableFuture containing the Version object which represents the version of
* Dgraph instance.
* */
* Dgraph instance.
*/
public CompletableFuture<Version> checkVersion() {
final DgraphGrpc.DgraphStub stub = anyClient();
final DgraphProto.Check checkRequest = DgraphProto.Check.newBuilder().build();
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/dgraph/DgraphClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public void alter(Operation op) {
* interacting with.
*
* @return A Version object which represents the version of Dgraph instance.
* */
*/
public Version checkVersion() {
return asyncClient.checkVersion().join();
}
Expand Down

0 comments on commit efd31f9

Please sign in to comment.