-------------
* Adds support for macOS 10.14 (Mojave)
This release updates the framework wrappers with support
for new APIs in macOS 10.14 and adds bindings for the following
new frameworks:
- AdSupport
- CoreAudio (new in macOS 10.0)
- CoreAudioKit (new in macOS 10.4)
- CoreMedia (new in macOS 10.7)
- CoreMediaIO (new in macOS 10.7)
- DiscRecording (new in macOS 10.2)
- DiscRecordingUI (new in macOS 10.2)
- DVDPlayback (new in macOS 10.3)
- MediaToolbox
- NaturalLanguage
- Network
- OSAKit (new in macOS 10.4)
- UserNotifications
- VideoSubscriberAccount
- Support for CoreAudio, CoreMedia and MediaToolbox is limited
in this release due to missing manual wrappers.
- Added two features that can help with gating code on the
version of macos:
1) The constants "objc.MAC_OS_X_VERSION_CURRENT" can be
compared with one of the "objc.MAC_OS_X_VERSION\_..." constants.
2) The function "objc.macos_avaiable(major, minor[, patch])"
returns true if the current macOS version is at least the
specified version, comparable with "available" in Swift.