Skip to content

Commit 0bf399a

Browse files
committed
chore(readme): expand SNAPSHOT section
1 parent 3f0d175 commit 0bf399a

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,20 @@ This ensures that all dynamically-loaded dependecies of `io.grpc` are resolved c
2727
The latest development version of `client6` is released after every merged pull request. Set the version to `6.0.0-SNAPSHOT` to include it in your project.
2828
Please be mindful of the fact that this is not a stable release and breaking changes may be introduced.
2929

30+
Snapshot releases overwrite each other, so no two releases are alike. If you find a bug in one of the `SNAPSHOT` versions that you'd like to report, please include the output of `Debug.printBuildInfo()` in the ticket's description.
31+
32+
```java
33+
import io.weaviate.client6.v1.internal.Debug;
34+
35+
public class App {
36+
public static void main(String[] args) {
37+
Debug.printBuildInfo();
38+
39+
// ...the rest of your application code...
40+
}
41+
}
42+
```
43+
3044
### Gson and reflective access to internal JDK classes
3145

3246
The client uses Google's [`gson`](https://github.com/google/gson) for JSON de-/serialization which does reflection on internal `java.lang` classes. This is _not allowed by default_ in Java 9 and above.

0 commit comments

Comments
 (0)