Skip to content

Commit cc4ce71

Browse files
Release 5.8.0
1 parent 58bc0a0 commit cc4ce71

32 files changed

+9
-9
lines changed

CHANGES.md

Lines changed: 3 additions & 3 deletions
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.8.0)
6-
====================
5+
Release 5.8.0
6+
=============
77

88
Features
99
--------
1010
* [#1313](https://github.com/java-native-access/jna/issues/1313): Normalize `RESOURCE_PREFIX` for darwin to `darwin-$arch` and split jnidispatch library per architecture - [@matthiasblaesing](https://github.com/matthiasblaesing).
11-
* [#1318](https://github.com/java-native-access/jna/pull/1318): Add support for linux-risc64 - [@thentschel](https://github.com/thentschel).
11+
* [#1318](https://github.com/java-native-access/jna/pull/1318): Add support for linux-riscv64 - [@thentschel](https://github.com/thentschel).
1212
* [#1327](https://github.com/java-native-access/jna/pull/1327): Add partial support for future values of `c.s.j.p.win32.WinNT.LOGICAL_PROCESSOR_RELATIONSHIP` enum present in Windows Insider builds - [@dbwiddis](https://github.com/dbwiddis).
1313

1414
Bug Fixes

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.7.0/javadoc/). Please read the [overview](http://java-native-access.github.io/jna/5.7.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.8.0/javadoc/). Please read the [overview](http://java-native-access.github.io/jna/5.8.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

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

66-
Version 5.7.0
66+
Version 5.8.0
6767

6868
JNA
6969
---
7070

71-
[![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.7.0/jar) [jna-5.7.0.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna/5.7.0/jna-5.7.0.jar) [jna-5.7.0-jpms.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna/5.7.0/jna-5.7.0-jpms.jar)
71+
[![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.8.0/jar) [jna-5.8.0.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna/5.8.0/jna-5.8.0.jar) [jna-5.8.0-jpms.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna/5.8.0/jna-5.8.0-jpms.jar)
7272

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

7676
JNA Platform
7777
------------
7878

79-
[![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.7.0/jar) [jna-platform-5.7.0.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.7.0/jna-platform-5.7.0.jar) [jna-platform-5.7.0-jpms.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.7.0/jna-platform-5.7.0-jpms.jar)
79+
[![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.8.0/jar) [jna-platform-5.8.0.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.8.0/jna-platform-5.8.0.jar) [jna-platform-5.8.0-jpms.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna-platform/5.8.0/jna-platform-5.8.0-jpms.jar)
8080

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

149149
Primary Documentation (JavaDoc)
150150
===============================
151151

152-
The definitive JNA reference is in the [JavaDoc](http://java-native-access.github.io/jna/5.7.0/javadoc/).
152+
The definitive JNA reference is in the [JavaDoc](http://java-native-access.github.io/jna/5.8.0/javadoc/).
153153

154154
Developers
155155
==========

dist/darwin-aarch64.jar

28 KB
Binary file not shown.

dist/darwin-ppc.jar

508 Bytes
Binary file not shown.

dist/darwin-ppc64.jar

508 Bytes
Binary file not shown.

dist/darwin-x86-64.jar

34.8 KB
Binary file not shown.

dist/darwin-x86.jar

508 Bytes
Binary file not shown.

dist/doc.zip

3.93 KB
Binary file not shown.

dist/jna-jpms.jar

42.3 KB
Binary file not shown.

dist/jna-min.jar

728 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)