Skip to content

Commit 3705b84

Browse files
Release 5.12.1
1 parent 2f919e5 commit 3705b84

23 files changed

+10
-13
lines changed

CHANGES.md

+2-5
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,8 @@ 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.13.0)
6-
=====================
7-
8-
Features
9-
--------
5+
Release 5.12.1
6+
==============
107

118
Bug Fixes
129
---------

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.12.0/javadoc/). Please read the [overview](http://java-native-access.github.io/jna/5.12.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.12.1/javadoc/). Please read the [overview](http://java-native-access.github.io/jna/5.12.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

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

68-
Version 5.12.0
68+
Version 5.12.1
6969

7070
JNA
7171
---
7272

73-
[![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.12.0/jar) [jna-5.12.0.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna/5.12.0/jna-5.12.0.jar) [jna-jpms-5.12.0.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna-jpms/5.12.0/jna-jpms-5.12.0.jar)
73+
[![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.12.1/jar) [jna-5.12.1.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna/5.12.1/jna-5.12.1.jar) [jna-jpms-5.12.1.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna-jpms/5.12.1/jna-jpms-5.12.1.jar)
7474

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

7878
JNA Platform
7979
------------
8080

81-
[![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.12.0/jar) [jna-platform-5.12.0.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.12.0/jna-platform-5.12.0.jar) [jna-platform-jpms-5.12.0.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna-platform-jpms/5.12.0/jna-platform-jpms-5.12.0.jar)
81+
[![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.12.1/jar) [jna-platform-5.12.1.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.12.1/jna-platform-5.12.1.jar) [jna-platform-jpms-5.12.1.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna-platform-jpms/5.12.1/jna-platform-jpms-5.12.1.jar)
8282

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

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

154-
The definitive JNA reference is in the [JavaDoc](http://java-native-access.github.io/jna/5.12.0/javadoc/).
154+
The definitive JNA reference is in the [JavaDoc](http://java-native-access.github.io/jna/5.12.1/javadoc/).
155155

156156
Developers
157157
==========

build.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@
6363

6464
<!-- JNA library release version - android versionCode is derived from mjar/minor/revision -->
6565
<property name="jna.major" value="5"/>
66-
<property name="jna.minor" value="13"/>
67-
<property name="jna.revision" value="0"/>
66+
<property name="jna.minor" value="12"/>
67+
<property name="jna.revision" value="1"/>
6868
<property name="jna.build" value="0"/> <!--${build.number}-->
6969
<condition property="version.suffix" value="" else="-SNAPSHOT">
7070
<or>

dist/doc.zip

12 Bytes
Binary file not shown.

dist/jna-jpms.jar

28 Bytes
Binary file not shown.

dist/jna-min.jar

28 Bytes
Binary file not shown.

dist/jna-platform-jpms.jar

1 Byte
Binary file not shown.

dist/jna-platform.jar

1 Byte
Binary file not shown.

dist/jna.aar

-50 Bytes
Binary file not shown.

dist/jna.jar

28 Bytes
Binary file not shown.

dist/jnacontrib/demo-alphamask.jar

27 Bytes
Binary file not shown.
27 Bytes
Binary file not shown.

dist/jnacontrib/demo-balloontips.jar

27 Bytes
Binary file not shown.

dist/jnacontrib/demo-dnd.jar

27 Bytes
Binary file not shown.

dist/jnacontrib/demo-monitordemo.jar

27 Bytes
Binary file not shown.

dist/jnacontrib/demo-msoffice.jar

27 Bytes
Binary file not shown.
27 Bytes
Binary file not shown.

dist/jnacontrib/demo-shapedwindow.jar

27 Bytes
Binary file not shown.

dist/jnacontrib/demo-w32printing.jar

27 Bytes
Binary file not shown.
27 Bytes
Binary file not shown.

dist/jnacontrib/demo-x11.jar

27 Bytes
Binary file not shown.

dist/src-full.zip

30 Bytes
Binary file not shown.

dist/src.zip

30 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)