Skip to content

Commit 30e102e

Browse files
chore: release v20.03.3 (#162)
New Features: * `DgraphAsyncClient` can be constructed with an executor argument to better manage resources.
1 parent 6c3f3f9 commit 30e102e

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

PUBLISHING.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,11 @@ ossrhPassword=<…password…>
2727
* Build and test the code that needs to be published.
2828
* Bump version by modifying the `version` variable in `build.gradle` file.
2929
* Update download version in README for both Maven and Gradle.
30+
* Update `dgraph4j version` in `grpc-netty` table in README.
31+
* Raise a PR for the above changes. Put the changelog in PR description and merge it.
3032
* Run `./gradlew uploadArchives`.
3133
* Release the deployment by following the steps on the page _Releasing the Deployment_ (link in references below).
34+
* Also cut a release tag on GitHub with the new version.
3235

3336
### References
3437
* [Publishing a project on Maven Central](https://medium.com/@nmauti/publishing-a-project-on-maven-central-8106393db2c3)

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ grab via Maven:
5454
<dependency>
5555
<groupId>io.dgraph</groupId>
5656
<artifactId>dgraph4j</artifactId>
57-
<version>20.03.2</version>
57+
<version>20.03.3</version>
5858
</dependency>
5959
```
6060
or Gradle:
6161
```groovy
62-
compile 'io.dgraph:dgraph4j:20.03.2'
62+
compile 'io.dgraph:dgraph4j:20.03.3'
6363
```
6464

6565
## Supported Versions
@@ -106,7 +106,7 @@ use a different version of this client.
106106
| 1.7.0 | 1.15.0 | 2.0.12.Final |
107107
| 1.7.3-1.7.5 | 1.15.1 | 2.0.12.Final |
108108
| 2.0.0-2.1.0 | 1.22.1 | 2.0.25.Final |
109-
| 20.03.0-20.03.2 | 1.26.0 | 2.0.26.Final |
109+
| 20.03.0-20.03.3 | 1.26.0 | 2.0.26.Final |
110110

111111
So, for example, if you were using `dgraph4j v20.03.0`, then you would need to use `2.0.26-Final`
112112
as the version for `netty-tcnative-boringssl-static` dependency as suggested by gRPC docs for
@@ -235,7 +235,7 @@ calling `alter`. You can find more details
235235

236236
```java
237237
String schema = "name: string @index(exact) .";
238-
Operation op = Operation.newBuilder()
238+
Operation operation = Operation.newBuilder()
239239
.setSchema(schema)
240240
.setRunInBackground(true)
241241
.build();

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 = '20.03.2'
44+
version = '20.03.3'
4545
sourceCompatibility = 1.8
4646
targetCompatibility = 1.8
4747

0 commit comments

Comments
 (0)