diff --git a/CHANGES.md b/CHANGES.md index ba3dacfc31..d43afe19c5 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -9,6 +9,7 @@ Features -------- * [#1534](https://github.com/java-native-access/jna/pull/1534): Add `GetMethod`, `Put`, `SpawnInstance` to `c.s.j.p.win32.COM.WbemCli#IWbemClassObject` and `ExecMethod` to `c.s.j.p.win32.COM.WbemCli#IWbemServices` - [@faddom](https://github.com/faddom). * [#1544](https://github.com/java-native-access/jna/pull/1544): Add `GetPriorityClass`, `SetPriorityClass`, `GetThreadPriority`, `SetThreadPriority` and associated constants to `c.s.j.p.win32.Kernel32` - [@dEajL3kA](https://github.com/dEajL3kA). +* [#1548](https://github.com/java-native-access/jna/pull/1548): Make interface `c.s.j.p.mac.XAttr public` - [@matthiasblaesing](https://github.com/matthiasblaesing). Bug Fixes --------- diff --git a/contrib/platform/src/com/sun/jna/platform/mac/XAttr.java b/contrib/platform/src/com/sun/jna/platform/mac/XAttr.java index 1cad125a93..666324212c 100644 --- a/contrib/platform/src/com/sun/jna/platform/mac/XAttr.java +++ b/contrib/platform/src/com/sun/jna/platform/mac/XAttr.java @@ -31,7 +31,7 @@ * JNA wrapper for <sys/xattr.h> * */ -interface XAttr extends Library { +public interface XAttr extends Library { // load from current image XAttr INSTANCE = Native.load(null, XAttr.class);