Skip to content

Commit 2ab48ce

Browse files
chore: release v21.03.0 (GRAPHQL-1144) (#169)
### Added * feat: add loginIntoNamespace API on clients (GRAPHQL-1058) (#166) ### Deprecated * chore: Sync dgo + deprecate Slash endpoint method (GRAPHQL-1141) (#167) ### Fixed * fix(test): Don't use dgraph binary in tests (GRAPHQL-1144) (#168)
1 parent 55cfb6a commit 2ab48ce

File tree

4 files changed

+21
-5
lines changed

4 files changed

+21
-5
lines changed

CHANGELOG.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ and this project adheres to [Calendar Versioning](https://calver.org/) starting
66

77
## [Unreleased]
88

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+
921
## [20.11.0] - 2020-12-23
1022
### Added
1123
* feat: Add support for RDF response (DGRAPH-2659) ([#160])
@@ -139,7 +151,8 @@ and this project adheres to [Calendar Versioning](https://calver.org/) starting
139151
## [1.0.0] - 2017-12-18
140152
* Fully compatible with Dgraph v1.0
141153

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
143156
[20.11.0]: https://github.com/dgraph-io/dgraph4j/compare/v20.03.3...v20.11.0
144157
[20.03.3]: https://github.com/dgraph-io/dgraph4j/compare/v20.03.2...v20.03.3
145158
[20.03.2]: https://github.com/dgraph-io/dgraph4j/compare/v20.03.1...v20.03.2

PUBLISHING.md

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ ossrhPassword=<…password…>
2828
* Bump version by modifying the `version` variable in `build.gradle` file.
2929
* Update download version in README for both Maven and Gradle.
3030
* Update `dgraph4j version` in `grpc-netty` table in README.
31+
* Update CHANGELOG.
3132
* Raise a PR for the above changes. Put the changelog in PR description and merge it.
3233
* Run `./gradlew uploadArchives`.
3334
* Release the deployment by following the steps on the page _Releasing the Deployment_ (link in references below).

README.md

+5-3
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>20.11.0</version>
58+
<version>21.03.0</version>
5959
</dependency>
6060
```
6161
or Gradle:
6262
```groovy
63-
compile 'io.dgraph:dgraph4j:20.11.0'
63+
compile 'io.dgraph:dgraph4j:21.03.0'
6464
```
6565

6666
## Supported Versions
@@ -72,7 +72,9 @@ use a different version of this client.
7272
|:--------------:|:-----------------:|:------------:|
7373
| 1.0.X | 1.X.X | 1.9.X |
7474
| 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 |
7678

7779
#### Note regarding Java 1.8.x support:
7880
* If you aren't using gRPC with TLS, then the above version table will work for you with Java

build.gradle

+1-1
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 = '20.11.0'
44+
version = '21.03.0'
4545
sourceCompatibility = 1.8
4646
targetCompatibility = 1.8
4747

0 commit comments

Comments
 (0)