Skip to content

Commit 3c493c1

Browse files
Release 5.18.1
1 parent e3838d5 commit 3c493c1

23 files changed

+11
-14
lines changed

CHANGES.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,12 @@ 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.19.0)
6-
=====================
7-
8-
Features
9-
--------
5+
Release 5.18.1
6+
==============
107

118
Bug Fixes
129
---------
13-
* [#1686](https://github.com/java-native-access/jna/issues/1686): Fix `sortFields` race condition while getting fields
10+
* [#1686](https://github.com/java-native-access/jna/issues/1686): Fix `sortFields` race condition while getting fields - [@bendk](https://github.com/bendk).
1411

1512
Release 5.18.0
1613
==============

README.md

Lines changed: 6 additions & 6 deletions
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.18.0/javadoc/). Please read the [overview](http://java-native-access.github.io/jna/5.18.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.18.1/javadoc/). Please read the [overview](http://java-native-access.github.io/jna/5.18.1/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.18.0
69+
Version 5.18.1
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.18.0/jar) [jna-5.18.0.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna/5.18.0/jna-5.18.0.jar) [jna-jpms-5.18.0.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna-jpms/5.18.0/jna-jpms-5.18.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.18.1/jar) [jna-5.18.1.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna/5.18.1/jna-5.18.1.jar) [jna-jpms-5.18.1.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna-jpms/5.18.1/jna-jpms-5.18.1.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.18.0/jar) [jna-platform-5.18.0.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.18.0/jna-platform-5.18.0.jar) [jna-platform-jpms-5.18.0.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna-platform-jpms/5.18.0/jna-platform-jpms-5.18.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.18.1/jar) [jna-platform-5.18.1.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.18.1/jna-platform-5.18.1.jar) [jna-platform-jpms-5.18.1.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna-platform-jpms/5.18.1/jna-platform-jpms-5.18.1.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.18.0/javadoc/overview-summary.html#crash-protection)
150+
* [Avoiding Crashes](http://java-native-access.github.io/jna/5.18.1/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.18.0/javadoc/).
155+
The definitive JNA reference is in the [JavaDoc](http://java-native-access.github.io/jna/5.18.1/javadoc/).
156156

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

common.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<!-- JNA library release version - android versionCode is derived from mjar/minor/revision -->
1010
<property name="jna.major" value="5"/>
11-
<property name="jna.minor" value="19"/>
12-
<property name="jna.revision" value="0"/>
11+
<property name="jna.minor" value="18"/>
12+
<property name="jna.revision" value="1"/>
1313
<property name="jna.build" value="0"/> <!--${build.number}-->
1414
<condition property="version.suffix" value="" else="-SNAPSHOT">
1515
<or>

dist/doc.zip

-146 Bytes
Binary file not shown.

dist/jna-jpms.jar

4 Bytes
Binary file not shown.

dist/jna-min.jar

5 Bytes
Binary file not shown.

dist/jna-platform-jpms.jar

-2 Bytes
Binary file not shown.

dist/jna-platform.jar

-2 Bytes
Binary file not shown.

dist/jna.aar

-67 Bytes
Binary file not shown.

dist/jna.jar

5 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)