diff options
author | Hans de Goede <hdegoede@redhat.com> | 2013-06-20 15:18:10 +0200 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2013-06-20 15:24:09 +0200 |
commit | e2fe75ebab83d2fe8ee8ebc3ff13fef0132bff18 (patch) | |
tree | 19a4d4f4ba9fea0878c61158b575fe1d0a05a106 | |
parent | 061a807b9d94aca042f37c59b9ac4e73af421061 (diff) | |
download | libusb-9616ebeb49437efb151add57f1a85f17c764a5f6.tar.gz |
Prepare for 1.0.16-rc1 releasev1.0.16-rc1
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
-rw-r--r-- | AUTHORS | 4 | ||||
-rw-r--r-- | ChangeLog | 18 | ||||
-rw-r--r-- | libusb/version.h | 2 | ||||
-rw-r--r-- | libusb/version_nano.h | 2 |
4 files changed, 23 insertions, 3 deletions
@@ -33,7 +33,9 @@ James Hanko Konrad Rzepecki Lars Wirzenius Martin Koegler +Martin Pieuchot Matthias Bolte +Michael Plante Mike Frysinger Mikhail Gusarov Nicholas Corgan @@ -52,4 +54,4 @@ Vegard Storheil Eriksen Vitali Lovich Xiaofan Chen Zoltán Kovács -Роман Донченко
\ No newline at end of file +Роман Донченко @@ -1,6 +1,24 @@ For detailed information about the changes below, please see the git log or visit: http://log.libusbx.org +2013-06-20: v1.0.16-rc1 +* Add hotplug support for Darwin and Linux (#9) +* Add superspeed endpoint companion descriptor support (#15) +* Add BOS descriptor support (#15) +* Make descriptor parsing code more robust +* New libusb_get_port_numbers API, this is libusb_get_port_path without + the unnecessary context parameter, libusb_get_port_path is now deprecated +* New libusb_strerror API (#14) +* New libusb_set_auto_detach_kernel_driver API (#17) +* Android: use Android logging when building on Android (#101) +* Darwin: make libusb_reset reenumerate device on descriptors change (#89) +* Darwin: add support for the LIBUSB_TRANSFER_ADD_ZERO_PACKET flag (#91) +* Darwin: add a device cache (#112, #114) +* Examples: Add sam3u_benchmark isochronous example by Harald Welte (#109) +* Many other bug fixes and improvements +The (#xx) numbers are libusbx issue numbers, see ie: +https://github.com/libusbx/libusbx/issues/9 + 2013-04-15: v1.0.15 * Improve transfer cancellation and avoid short read failures on broken descriptors * Filter out 8-bit characters in libusb_get_string_descriptor_ascii() diff --git a/libusb/version.h b/libusb/version.h index cf37de9..a8818e2 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 "" +#define LIBUSB_RC "-rc1" #endif diff --git a/libusb/version_nano.h b/libusb/version_nano.h index 78685fc..fc4bfd1 100644 --- a/libusb/version_nano.h +++ b/libusb/version_nano.h @@ -1 +1 @@ -#define LIBUSB_NANO 10754 +#define LIBUSB_NANO 10755 |