Skip to content

Commit

Permalink
chore: release v21.03.1
Browse files Browse the repository at this point in the history
### Added
* fix(deprecation): add DgraphClient.clientStubFromCloudEndpoint (#170)
  • Loading branch information
abhimanyusinghgaur committed Apr 22, 2021
1 parent 0638ef7 commit ae17b5d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Calendar Versioning](https://calver.org/) starting

## [Unreleased]

## [21.03.1] - 2021-04-22
### Added
* fix(deprecation): add DgraphClient.clientStubFromCloudEndpoint ([#170])

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

## [21.03.0] - 2021-04-08
### Added
* feat: add loginIntoNamespace API on clients (GRAPHQL-1058) ([#166])
Expand Down Expand Up @@ -151,7 +157,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.0...HEAD
[Unreleased]: https://github.com/dgraph-io/dgraph4j/compare/v21.03.1...HEAD
[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
[20.03.3]: https://github.com/dgraph-io/dgraph4j/compare/v20.03.2...v20.03.3
Expand Down
1 change: 1 addition & 0 deletions PUBLISHING.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ ossrhPassword=<…password…>
* 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.
* Update `Supported Versions` table in README.
* Update `dgraph4j version` in `grpc-netty` table in README.
* Update CHANGELOG.
* Raise a PR for the above changes. Put the changelog in PR description and merge it.
Expand Down
4 changes: 2 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.0</version>
<version>21.03.1</version>
</dependency>
```
or Gradle:
```groovy
compile 'io.dgraph:dgraph4j:21.03.0'
compile 'io.dgraph:dgraph4j:21.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 = '21.03.0'
version = '21.03.1'
sourceCompatibility = 1.8
targetCompatibility = 1.8

Expand Down

0 comments on commit ae17b5d

Please sign in to comment.