File tree 4 files changed +21
-5
lines changed
4 files changed +21
-5
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,18 @@ and this project adheres to [Calendar Versioning](https://calver.org/) starting
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 21.03.0] - 2021-04-08
10
+ ### Added
11
+ * feat: add loginIntoNamespace API on clients (GRAPHQL-1058) ([ #166 ] )
12
+ ### Deprecated
13
+ * chore: Sync dgo + deprecate Slash endpoint method (GRAPHQL-1141) ([ #167 ] )
14
+ ### Fixed
15
+ * fix(test): Don't use dgraph binary in tests (GRAPHQL-1144) ([ #168 ] )
16
+
17
+ [ #166 ] : https://github.com/dgraph-io/dgraph4j/pull/166
18
+ [ #167 ] : https://github.com/dgraph-io/dgraph4j/pull/167
19
+ [ #168 ] : https://github.com/dgraph-io/dgraph4j/pull/168
20
+
9
21
## [ 20.11.0] - 2020-12-23
10
22
### Added
11
23
* feat: Add support for RDF response (DGRAPH-2659) ([ #160 ] )
@@ -139,7 +151,8 @@ and this project adheres to [Calendar Versioning](https://calver.org/) starting
139
151
## [ 1.0.0] - 2017-12-18
140
152
* Fully compatible with Dgraph v1.0
141
153
142
- [ Unreleased ] : https://github.com/dgraph-io/dgraph4j/compare/v20.11.0...HEAD
154
+ [ Unreleased ] : https://github.com/dgraph-io/dgraph4j/compare/v21.03.0...HEAD
155
+ [ 21.03.0 ] : https://github.com/dgraph-io/dgraph4j/compare/v20.11.0...v21.03.0
143
156
[ 20.11.0 ] : https://github.com/dgraph-io/dgraph4j/compare/v20.03.3...v20.11.0
144
157
[ 20.03.3 ] : https://github.com/dgraph-io/dgraph4j/compare/v20.03.2...v20.03.3
145
158
[ 20.03.2 ] : https://github.com/dgraph-io/dgraph4j/compare/v20.03.1...v20.03.2
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ ossrhPassword=<…password…>
28
28
* Bump version by modifying the ` version ` variable in ` build.gradle ` file.
29
29
* Update download version in README for both Maven and Gradle.
30
30
* Update ` dgraph4j version ` in ` grpc-netty ` table in README.
31
+ * Update CHANGELOG.
31
32
* Raise a PR for the above changes. Put the changelog in PR description and merge it.
32
33
* Run ` ./gradlew uploadArchives ` .
33
34
* Release the deployment by following the steps on the page _ Releasing the Deployment_ (link in references below).
Original file line number Diff line number Diff line change @@ -55,12 +55,12 @@ grab via Maven:
55
55
<dependency >
56
56
<groupId >io.dgraph</groupId >
57
57
<artifactId >dgraph4j</artifactId >
58
- <version >20.11 .0</version >
58
+ <version >21.03 .0</version >
59
59
</dependency >
60
60
```
61
61
or Gradle:
62
62
``` groovy
63
- compile 'io.dgraph:dgraph4j:20.11 .0'
63
+ compile 'io.dgraph:dgraph4j:21.03 .0'
64
64
```
65
65
66
66
## Supported Versions
@@ -72,7 +72,9 @@ use a different version of this client.
72
72
| :--------------:| :-----------------:| :------------:|
73
73
| 1.0.X | 1.X.X | 1.9.X |
74
74
| 1.1.0 - 2.X.X | 2.X.X | 1.9.X |
75
- | >= 20.XX.X | 20.XX.X | 1.9.X |
75
+ | 20.03.X-20.07.X | 20.03.X | 1.9.X |
76
+ | 20.11.X | 20.11.X | 1.9.X |
77
+ | >= 21.XX.X | 21.XX.X | 1.9.X |
76
78
77
79
#### Note regarding Java 1.8.x support:
78
80
* If you aren't using gRPC with TLS, then the above version table will work for you with Java
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ apply plugin: 'signing'
41
41
42
42
group = ' io.dgraph'
43
43
archivesBaseName = ' dgraph4j'
44
- version = ' 20.11 .0'
44
+ version = ' 21.03 .0'
45
45
sourceCompatibility = 1.8
46
46
targetCompatibility = 1.8
47
47
You can’t perform that action at this time.
0 commit comments