diff --git a/README.md b/README.md index 27d37a9c..74aae479 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Java-GI -**Java-GI** is a tool for generating GObject-Introspection bindings for Java. The generated bindings use the [Panama Foreign Function & Memory API](https://openjdk.org/projects/panama/) (JEP 442, currently in preview status) to directly access native resources from inside the JVM, with wrapper classes based on GObject-Introspection to offer an elegant API. Java-GI version 0.9.1 generates bindings to develop Java applications for libraries, based of the versions in GNOME Platform 45: +**Java-GI** is a tool for generating GObject-Introspection bindings for Java. The generated bindings use the [Panama Foreign Function & Memory API](https://openjdk.org/projects/panama/) (JEP 442, currently in preview status) to directly access native resources from inside the JVM, with wrapper classes based on GObject-Introspection to offer an elegant API. Java-GI version 0.9.2 generates bindings to develop Java applications for libraries, based of the versions in GNOME Platform 45: | Library | Java-GI 0.7.x | Java-GI 0.8.x and 0.9.x | |---------------|---------------|-------------------------| diff --git a/website/docs/index.md b/website/docs/index.md index 169b3013..530eaf20 100644 --- a/website/docs/index.md +++ b/website/docs/index.md @@ -34,7 +34,7 @@ Java bindings for there libraries are available from [Maven Central](https://cen ## API documentation -Java-GI converts API documentation from GObject-Introspection to Javadoc. For the library bindings published by Java-GI 0.9.1, [the Javadoc is available here](https://jwharm.github.io/java-gi/javadoc). +Java-GI converts API documentation from GObject-Introspection to Javadoc. For the library bindings published by Java-GI 0.9.2, [the Javadoc is available here](https://jwharm.github.io/java-gi/javadoc). JAR files with the Javadoc and source code, to use offline in your IDE, are available from Maven Central. diff --git a/website/docs/usage.md b/website/docs/usage.md index daee1215..bc7c96f5 100644 --- a/website/docs/usage.md +++ b/website/docs/usage.md @@ -20,7 +20,7 @@ repositories { } dependencies { - implementation 'io.github.jwharm.javagi:gtk:0.9.1' + implementation 'io.github.jwharm.javagi:gtk:0.9.2' } ```