diff options
author | Nathan Hjelm <hjelmn@me.com> | 2016-09-12 21:42:23 -0600 |
---|---|---|
committer | Nathan Hjelm <hjelmn@me.com> | 2016-09-12 21:42:23 -0600 |
commit | 7f5f86fe42e0d7566b88240383648f8453445755 (patch) | |
tree | 701ecbc82eee5ceaa0d0b9db441b6e4735c21579 | |
parent | 1e05092aa98d60c717929629ac16590595e08431 (diff) | |
download | libusb-7f5f86fe42e0d7566b88240383648f8453445755.tar.gz |
on to 1.0.21-rc4
Signed-off-by: Nathan Hjelm <hjelmn@me.com>
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | libusb/version.h | 2 | ||||
-rw-r--r-- | libusb/version_nano.h | 2 |
3 files changed, 6 insertions, 3 deletions
@@ -1,10 +1,13 @@ For detailed information about the changes below, please see the git log or visit: http://log.libusb.info -2016-07-20: v1.0.21: +2016-09-12: v1.0.21: * Core: Refactor code related to transfer flags and timeout handling * Darwin: Ignore root hub simulation devices * Darwin: Improved support for OS X El Capitan +* Darwin: Work around devices with buggy endpoint descriptors +* Darwin: Do not use objc_registerThreadWithCollector after its deprecation +* Darwin: Use C11 atomics on 10.12+ as the OS atomics are now deprecated * Linux: Support preallocating kernel memory for zerocopy USB * Linux: Deal with receiving POLLERR before all transfers have completed * Solaris: Add solaris backend diff --git a/libusb/version.h b/libusb/version.h index 54d6382..81a7370 100644 --- a/libusb/version.h +++ b/libusb/version.h @@ -14,5 +14,5 @@ #endif /* LIBUSB_RC is the release candidate suffix. Should normally be empty. */ #ifndef LIBUSB_RC -#define LIBUSB_RC "-rc3" +#define LIBUSB_RC "-rc4" #endif diff --git a/libusb/version_nano.h b/libusb/version_nano.h index ae95b50..e3cb477 100644 --- a/libusb/version_nano.h +++ b/libusb/version_nano.h @@ -1 +1 @@ -#define LIBUSB_NANO 11143 +#define LIBUSB_NANO 11144 |