From ba80c6e51527bc6204c16829dda425207092080e Mon Sep 17 00:00:00 2001 From: Jan-Willem Harmannij Date: Sun, 7 Apr 2024 23:05:38 +0200 Subject: [PATCH] Update version number in documentation --- README.md | 2 +- website/docs/index.md | 4 ++-- website/docs/usage.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6083bef7..27d37a9c 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.0 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.1 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 065138f9..169b3013 100644 --- a/website/docs/index.md +++ b/website/docs/index.md @@ -18,7 +18,7 @@ Please note that Java-GI is still under active development. Feedback is welcome. ## Supported libraries -Java-GI version 0.7.2 works with OpenJDK 20. Version 0.8.0 and 0.9.0 require OpenJDK 21. They have been built with the following library versions: +Java-GI version 0.7.2 works with OpenJDK 20. Version 0.8.* and 0.9.* require OpenJDK 21. They have been built with the following library versions: | Library | Java-GI 0.7.x | Java-GI 0.8.x and 0.9.x | |---------------|---------------|-------------------------| @@ -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.0, [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.1, [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 de85c23e..daee1215 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.0' + implementation 'io.github.jwharm.javagi:gtk:0.9.1' } ```