Skip to content

Commit

Permalink
chore: release v21.03.2 (#174)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmai authored Dec 24, 2021
1 parent 196a694 commit 22caac0
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 7 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ and this project adheres to [Calendar Versioning](https://calver.org/) starting

## [Unreleased]

## [21.03.2] - 2021-12-24

### Added

* feat: Add timeout parameters to transaction requests. ([#172])
* feat: Add shutdown method to client. ([#173])

[#172]: https://github.com/dgraph-io/dgraph4j/pull/172
[#173]: https://github.com/dgraph-io/dgraph4j/pull/173

## [21.03.1] - 2021-04-22
### Added
* fix(deprecation): add DgraphClient.clientStubFromCloudEndpoint ([#170])
Expand Down Expand Up @@ -157,7 +167,8 @@ and this project adheres to [Calendar Versioning](https://calver.org/) starting
## [1.0.0] - 2017-12-18
* Fully compatible with Dgraph v1.0

[Unreleased]: https://github.com/dgraph-io/dgraph4j/compare/v21.03.1...HEAD
[Unreleased]: https://github.com/dgraph-io/dgraph4j/compare/v21.03.2...HEAD
[21.03.2]: https://github.com/dgraph-io/dgraph4j/compare/v21.03.1...v21.03.2
[21.03.1]: https://github.com/dgraph-io/dgraph4j/compare/v21.03.0...v21.03.1
[21.03.0]: https://github.com/dgraph-io/dgraph4j/compare/v20.11.0...v21.03.0
[20.11.0]: https://github.com/dgraph-io/dgraph4j/compare/v20.03.3...v20.11.0
Expand Down
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@ grab via Maven:
<dependency>
<groupId>io.dgraph</groupId>
<artifactId>dgraph4j</artifactId>
<version>21.03.1</version>
<version>21.03.2</version>
</dependency>
```
or Gradle:
```groovy
compile 'io.dgraph:dgraph4j:21.03.1'
compile 'io.dgraph:dgraph4j:21.03.2'
```

## Supported Versions
Expand Down Expand Up @@ -594,6 +594,12 @@ client](#creating-a-client).
channel.shutdown();
```

You can also close all channels in from the client object:

```
dgraphClient.shutdown();
```

## Using the Asynchronous Client
Dgraph Client for Java also bundles an asynchronous API, which can be used by
instantiating the `DgraphAsyncClient` class. The usage is almost exactly the
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 = '21.03.1'
version = '21.03.2'
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:21.03.1'
compile 'io.dgraph:dgraph4j:21.03.2'

// Use JUnit test framework
testCompile 'junit:junit:4.12'
Expand Down
2 changes: 1 addition & 1 deletion samples/DgraphJavaSampleDeadlineInterceptors/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:21.03.1'
compile 'io.dgraph:dgraph4j:21.03.2'

// Use JUnit test framework
testCompile 'junit:junit:4.12'
Expand Down
2 changes: 1 addition & 1 deletion samples/DgraphJavaSampleWithDeadlineAfter/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:21.03.1'
compile 'io.dgraph:dgraph4j:21.03.2'

// Use JUnit test framework
testCompile 'junit:junit:4.12'
Expand Down

0 comments on commit 22caac0

Please sign in to comment.