Skip to content

Commit 22caac0

Browse files
authored
chore: release v21.03.2 (#174)
1 parent 196a694 commit 22caac0

File tree

6 files changed

+24
-7
lines changed

6 files changed

+24
-7
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ and this project adheres to [Calendar Versioning](https://calver.org/) starting
66

77
## [Unreleased]
88

9+
## [21.03.2] - 2021-12-24
10+
11+
### Added
12+
13+
* feat: Add timeout parameters to transaction requests. ([#172])
14+
* feat: Add shutdown method to client. ([#173])
15+
16+
[#172]: https://github.com/dgraph-io/dgraph4j/pull/172
17+
[#173]: https://github.com/dgraph-io/dgraph4j/pull/173
18+
919
## [21.03.1] - 2021-04-22
1020
### Added
1121
* fix(deprecation): add DgraphClient.clientStubFromCloudEndpoint ([#170])
@@ -157,7 +167,8 @@ and this project adheres to [Calendar Versioning](https://calver.org/) starting
157167
## [1.0.0] - 2017-12-18
158168
* Fully compatible with Dgraph v1.0
159169

160-
[Unreleased]: https://github.com/dgraph-io/dgraph4j/compare/v21.03.1...HEAD
170+
[Unreleased]: https://github.com/dgraph-io/dgraph4j/compare/v21.03.2...HEAD
171+
[21.03.2]: https://github.com/dgraph-io/dgraph4j/compare/v21.03.1...v21.03.2
161172
[21.03.1]: https://github.com/dgraph-io/dgraph4j/compare/v21.03.0...v21.03.1
162173
[21.03.0]: https://github.com/dgraph-io/dgraph4j/compare/v20.11.0...v21.03.0
163174
[20.11.0]: https://github.com/dgraph-io/dgraph4j/compare/v20.03.3...v20.11.0

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ grab via Maven:
5555
<dependency>
5656
<groupId>io.dgraph</groupId>
5757
<artifactId>dgraph4j</artifactId>
58-
<version>21.03.1</version>
58+
<version>21.03.2</version>
5959
</dependency>
6060
```
6161
or Gradle:
6262
```groovy
63-
compile 'io.dgraph:dgraph4j:21.03.1'
63+
compile 'io.dgraph:dgraph4j:21.03.2'
6464
```
6565

6666
## Supported Versions
@@ -594,6 +594,12 @@ client](#creating-a-client).
594594
channel.shutdown();
595595
```
596596

597+
You can also close all channels in from the client object:
598+
599+
```
600+
dgraphClient.shutdown();
601+
```
602+
597603
## Using the Asynchronous Client
598604
Dgraph Client for Java also bundles an asynchronous API, which can be used by
599605
instantiating the `DgraphAsyncClient` class. The usage is almost exactly the

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ apply plugin: 'signing'
4141

4242
group = 'io.dgraph'
4343
archivesBaseName = 'dgraph4j'
44-
version = '21.03.1'
44+
version = '21.03.2'
4545
sourceCompatibility = 1.8
4646
targetCompatibility = 1.8
4747

samples/DgraphJavaSample/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repositories {
1717

1818
dependencies {
1919
// Use Dgraph Java client
20-
compile 'io.dgraph:dgraph4j:21.03.1'
20+
compile 'io.dgraph:dgraph4j:21.03.2'
2121

2222
// Use JUnit test framework
2323
testCompile 'junit:junit:4.12'

samples/DgraphJavaSampleDeadlineInterceptors/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repositories {
1717

1818
dependencies {
1919
// Use Dgraph Java client
20-
compile 'io.dgraph:dgraph4j:21.03.1'
20+
compile 'io.dgraph:dgraph4j:21.03.2'
2121

2222
// Use JUnit test framework
2323
testCompile 'junit:junit:4.12'

samples/DgraphJavaSampleWithDeadlineAfter/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repositories {
1717

1818
dependencies {
1919
// Use Dgraph Java client
20-
compile 'io.dgraph:dgraph4j:21.03.1'
20+
compile 'io.dgraph:dgraph4j:21.03.2'
2121

2222
// Use JUnit test framework
2323
testCompile 'junit:junit:4.12'

0 commit comments

Comments
 (0)