You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Note down the short version of the Key ID: `gpg --list-keys --keyid-format short`.
14
+
- Generate a secret key ring file if not present: `gpg --export-secret-keys -o /path/to/.gnupg/secring.gpg`.
15
+
- Publish the keys to the MIT server: `gpg --send-keys <key-id>` (Maven Central will check for keys here).
16
+
- Create `~/.gradle/gradle.properties` and populate it with all the credentials:
17
+
17
18
```
18
19
signing.keyId=<…keyId…>
19
20
signing.password=<…password…>
@@ -24,19 +25,21 @@ ossrhPassword=<…password…>
24
25
```
25
26
26
27
### Deploying
27
-
* Build and test the code that needs to be published.
28
-
* Bump version by modifying the `version` variable in `build.gradle` file.
29
-
* Update download version in README for both Maven and Gradle.
30
-
* Update `Supported Versions` table in README.
31
-
* Update `dgraph4j version` in `grpc-netty` table in README.
32
-
* Update CHANGELOG.
33
-
* Raise a PR for the above changes. Put the changelog in PR description and merge it.
34
-
* Run `./gradlew uploadArchives`.
35
-
* Release the deployment by following the steps on the page _Releasing the Deployment_ (link in references below).
36
-
* Also cut a release tag on GitHub with the new version.
28
+
29
+
- Build and test the code that needs to be published.
30
+
- Bump version by modifying the `version` variable in `build.gradle` file.
31
+
- Update download version in README for both Maven and Gradle.
32
+
- Update `Supported Versions` table in README.
33
+
- Update `dgraph4j version` in `grpc-netty` table in README.
34
+
- Update CHANGELOG.
35
+
- Raise a PR for the above changes. Put the changelog in PR description and merge it.
36
+
- Run `./gradlew uploadArchives`.
37
+
- Release the deployment by following the steps on the page _Releasing the Deployment_ (link in references below).
38
+
- Also cut a release tag on GitHub with the new version.
37
39
38
40
### References
39
-
*[Publishing a project on Maven Central](https://medium.com/@nmauti/publishing-a-project-on-maven-central-8106393db2c3)
40
-
*[Deploying to OSSRH with Gradle - Introduction](http://central.sonatype.org/pages/gradle.html)
41
-
*[StackOverflow thread on issues during signing artefacts](https://stackoverflow.com/questions/27936119/gradle-uploadarchives-task-unable-to-read-secret-key)
42
-
*[Releasing the Deployment](http://central.sonatype.org/pages/releasing-the-deployment.html)
41
+
42
+
-[Publishing a project on Maven Central](https://medium.com/@nmauti/publishing-a-project-on-maven-central-8106393db2c3)
43
+
-[Deploying to OSSRH with Gradle - Introduction](http://central.sonatype.org/pages/gradle.html)
44
+
-[StackOverflow thread on issues during signing artefacts](https://stackoverflow.com/questions/27936119/gradle-uploadarchives-task-unable-to-read-secret-key)
45
+
-[Releasing the Deployment](http://central.sonatype.org/pages/releasing-the-deployment.html)
Copy file name to clipboardExpand all lines: README.md
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -58,12 +58,12 @@ grab via Maven:
58
58
<dependency>
59
59
<groupId>io.dgraph</groupId>
60
60
<artifactId>dgraph4j</artifactId>
61
-
<version>24.0.0</version>
61
+
<version>24.1.0</version>
62
62
</dependency>
63
63
```
64
64
or Gradle:
65
65
```groovy
66
-
compile 'io.dgraph:dgraph4j:24.0.0'
66
+
compile 'io.dgraph:dgraph4j:24.1.0'
67
67
```
68
68
69
69
## Supported Versions
@@ -120,6 +120,7 @@ The following is only applicable to dgraph4j versions < v24.X.X.
120
120
| 20.03.0-20.03.3 | 1.26.0 | 2.0.26.Final |
121
121
| >= 20.11.0 | 1.34.1 | 2.0.31.Final |
122
122
| >= 24.0.0 | 1.65.1 | 4.1.100.Final |
123
+
| >= 24.1.0 | 1.68.2 | 4.1.110.Final |
123
124
124
125
For example, when using `dgraph4j v24.0.0`, the version of the `netty-tcnative-boringssl-static` dependency to be used is `4.1.100.Final`, as suggested by gRPC docs for `grpc-netty v1.65.1`.
0 commit comments