Skip to content

Commit 695ae74

Browse files
committedMar 16, 2025
Release 5.17.0
1 parent 0e01083 commit 695ae74

29 files changed

+9
-9
lines changed
 

‎CHANGES.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ NOTE: as of JNA 4.0, JNA is now dual-licensed under LGPL and AL 2.0 (see LICENSE
22

33
NOTE: JNI native support is typically incompatible between minor versions, and almost always incompatible between major versions.
44

5-
Next Release (5.17.0)
6-
=====================
5+
Release (5.17.0)
6+
================
77

88
Features
99
--------
1010
* [#1658](https://github.com/java-native-access/jna/pull/1658): Add win32 power event constants, types, and functions - [@eranl](https://github.com/eranl).
11-
11+
1212
Bug Fixes
1313
---------
1414
* [#1647](https://github.com/java-native-access/jna/issues/1647): Fix calls to jnidispatch on Android with 16KB page size (part 2) - [@BugsBeGone](https://github.com/BugsBeGone).

‎README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Java Native Access (JNA)
88
========================
99

10-
The definitive JNA reference (including an overview and usage details) is in the [JavaDoc](http://java-native-access.github.io/jna/5.16.0/javadoc/). Please read the [overview](http://java-native-access.github.io/jna/5.16.0/javadoc/overview-summary.html#overview_description). Questions, comments, or exploratory conversations should begin on the [mailing list](http://groups.google.com/group/jna-users), although you may find it easier to find answers to already-solved problems on [StackOverflow](http://stackoverflow.com/questions/tagged/jna).
10+
The definitive JNA reference (including an overview and usage details) is in the [JavaDoc](http://java-native-access.github.io/jna/5.17.0/javadoc/). Please read the [overview](http://java-native-access.github.io/jna/5.17.0/javadoc/overview-summary.html#overview_description). Questions, comments, or exploratory conversations should begin on the [mailing list](http://groups.google.com/group/jna-users), although you may find it easier to find answers to already-solved problems on [StackOverflow](http://stackoverflow.com/questions/tagged/jna).
1111

1212
JNA provides Java programs easy access to native shared libraries without writing anything but Java code - no JNI or native code is required. This functionality is comparable to Windows' Platform/Invoke and Python's ctypes.
1313

@@ -66,20 +66,20 @@ Pre-built platform support may be found [here](https://github.com/java-native-ac
6666
Download
6767
========
6868

69-
Version 5.16.0
69+
Version 5.17.0
7070

7171
JNA
7272
---
7373

74-
[![Maven Central](https://img.shields.io/maven-central/v/net.java.dev.jna/jna.svg?label=Maven%20Central)](https://search.maven.org/artifact/net.java.dev.jna/jna/5.16.0/jar) [jna-5.16.0.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna/5.16.0/jna-5.16.0.jar) [jna-jpms-5.16.0.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna-jpms/5.16.0/jna-jpms-5.16.0.jar)
74+
[![Maven Central](https://img.shields.io/maven-central/v/net.java.dev.jna/jna.svg?label=Maven%20Central)](https://search.maven.org/artifact/net.java.dev.jna/jna/5.17.0/jar) [jna-5.17.0.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna/5.17.0/jna-5.17.0.jar) [jna-jpms-5.17.0.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna-jpms/5.17.0/jna-jpms-5.17.0.jar)
7575

7676
This is the core artifact of JNA and contains only the binding library and the
7777
core helper classes.
7878

7979
JNA Platform
8080
------------
8181

82-
[![Maven Central](https://img.shields.io/maven-central/v/net.java.dev.jna/jna-platform.svg?label=Maven%20Central)](https://search.maven.org/artifact/net.java.dev.jna/jna-platform/5.16.0/jar) [jna-platform-5.16.0.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.16.0/jna-platform-5.16.0.jar) [jna-platform-jpms-5.16.0.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna-platform-jpms/5.16.0/jna-platform-jpms-5.16.0.jar)
82+
[![Maven Central](https://img.shields.io/maven-central/v/net.java.dev.jna/jna-platform.svg?label=Maven%20Central)](https://search.maven.org/artifact/net.java.dev.jna/jna-platform/5.17.0/jar) [jna-platform-5.17.0.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.17.0/jna-platform-5.17.0.jar) [jna-platform-jpms-5.17.0.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna-platform-jpms/5.17.0/jna-platform-jpms-5.17.0.jar)
8383

8484
This artifact holds cross-platform mappings and mappings for a number of commonly used platform
8585
functions, including a large number of Win32 mappings as well as a set of utility classes
@@ -147,12 +147,12 @@ Using the Library
147147
* [Platform Library](https://github.com/java-native-access/jna/blob/master/www/PlatformLibrary.md)
148148
* [Direct Method Mapping](https://github.com/java-native-access/jna/blob/master/www/DirectMapping.md) (Optimization)
149149
* [Frequently Asked Questions (FAQ)](https://github.com/java-native-access/jna/blob/master/www/FrequentlyAskedQuestions.md)
150-
* [Avoiding Crashes](http://java-native-access.github.io/jna/5.16.0/javadoc/overview-summary.html#crash-protection)
150+
* [Avoiding Crashes](http://java-native-access.github.io/jna/5.17.0/javadoc/overview-summary.html#crash-protection)
151151

152152
Primary Documentation (JavaDoc)
153153
===============================
154154

155-
The definitive JNA reference is in the [JavaDoc](http://java-native-access.github.io/jna/5.16.0/javadoc/).
155+
The definitive JNA reference is in the [JavaDoc](http://java-native-access.github.io/jna/5.17.0/javadoc/).
156156

157157
Developers
158158
==========

‎dist/android-aarch64.jar

122 Bytes
Binary file not shown.

‎dist/android-arm.jar

-8 Bytes
Binary file not shown.

‎dist/android-armv7.jar

-5 Bytes
Binary file not shown.

‎dist/android-mips.jar

159 Bytes
Binary file not shown.

‎dist/android-mips64.jar

36 Bytes
Binary file not shown.

‎dist/android-x86-64.jar

-7 Bytes
Binary file not shown.

‎dist/android-x86.jar

-7 Bytes
Binary file not shown.

‎dist/doc.zip

246 KB
Binary file not shown.

‎dist/jna-jpms.jar

-469 Bytes
Binary file not shown.

‎dist/jna-min.jar

-489 Bytes
Binary file not shown.

‎dist/jna-platform-jpms.jar

2.88 KB
Binary file not shown.

‎dist/jna-platform.jar

2.88 KB
Binary file not shown.

‎dist/jna.aar

-117 Bytes
Binary file not shown.

‎dist/jna.jar

-469 Bytes
Binary file not shown.

‎dist/jnacontrib/demo-alphamask.jar

2.66 KB
Binary file not shown.
2.51 KB
Binary file not shown.

‎dist/jnacontrib/demo-balloontips.jar

2.57 KB
Binary file not shown.

‎dist/jnacontrib/demo-dnd.jar

2.47 KB
Binary file not shown.

‎dist/jnacontrib/demo-monitordemo.jar

2.43 KB
Binary file not shown.

‎dist/jnacontrib/demo-msoffice.jar

3.22 KB
Binary file not shown.
2.42 KB
Binary file not shown.

‎dist/jnacontrib/demo-shapedwindow.jar

2.49 KB
Binary file not shown.

‎dist/jnacontrib/demo-w32printing.jar

2.43 KB
Binary file not shown.
2.43 KB
Binary file not shown.

‎dist/jnacontrib/demo-x11.jar

2.61 KB
Binary file not shown.

‎dist/src-full.zip

982 Bytes
Binary file not shown.

‎dist/src.zip

982 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)