libusb 1.0.19-rc1
authorHans de Goede <hdegoede@redhat.com>
Fri, 2 May 2014 13:25:26 +0000 (15:25 +0200)
committerHans de Goede <hdegoede@redhat.com>
Mon, 19 May 2014 09:03:07 +0000 (11:03 +0200)
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
AUTHORS
ChangeLog
libusb/libusb-1.0.def
libusb/version.h
libusb/version_nano.h

diff --git a/AUTHORS b/AUTHORS
index c650646..e44b366 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -20,6 +20,7 @@ Aurelien Jarno
 Bastien Nocera
 Bei Zhang
 Benjamin Dobell
+Carl Karsten
 Chris Dickens
 Colin Walters
 Dave Camarillo
@@ -39,16 +40,19 @@ Hoi-Ho Chan
 Ilya Konstantinov
 James Hanko
 Joshua Blake
+Justin Bischoff
 Karsten Koenig
 Konrad Rzepecki
 Kuangye Guo
 Lars Wirzenius
 Luca Longinotti
+Markus Heidelberg
 Martin Koegler
 Matthias Bolte
 Mike Frysinger
 Mikhail Gusarov
 Moritz Fischer
+Ларионов Даниил
 Nicholas Corgan
 Omri Iluz
 Orin Eman
index 9894d47..3927cef 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,14 @@
 For detailed information about the changes below, please see the git log or
 visit: http://log.libusb.info
 
+2014-05-19: v1.0.19
+* Add support for USB bulk streams on Linux and Mac OS X (#11)
+* Windows: Add AMD and Intel USB-3.0 root hub support
+* Windows: Fix USB 3.0 speed detection on Windows 8 or later (#10)
+* All: Various small fixes and cleanups
+The (#xx) numbers are libusb issue numbers, see ie:
+https://github.com/libusb/libusb/issues/11
+
 2014-01-25: v1.0.18
 * Fix multiple memory leaks
 * Fix a crash when HID transfers return no data on Windows
@@ -28,8 +36,6 @@ visit: http://log.libusb.info
   to stay with the libusb shipped with OpenBSD (mpi)
 * Windows: fix libusb_dll_2010.vcxproj link errors (#129)
 * Various other bug fixes and improvements
-The (#xx) numbers are libusbx issue numbers, see ie:
-https://github.com/libusbx/libusbx/issues/121
 
 2013-07-11: v1.0.16
 * Add hotplug support for Darwin and Linux (#9)
index cb0e32a..d45cfc5 100644 (file)
@@ -1,5 +1,7 @@
 LIBRARY "libusb-1.0.dll"
 EXPORTS
+  libusb_alloc_streams
+  libusb_alloc_streams@16 = libusb_alloc_streams
   libusb_alloc_transfer
   libusb_alloc_transfer@4 = libusb_alloc_transfer
   libusb_attach_kernel_driver
@@ -38,6 +40,8 @@ EXPORTS
   libusb_free_ss_endpoint_companion_descriptor@4 = libusb_free_ss_endpoint_companion_descriptor
   libusb_free_ss_usb_device_capability_descriptor
   libusb_free_ss_usb_device_capability_descriptor@4 = libusb_free_ss_usb_device_capability_descriptor
+  libusb_free_streams
+  libusb_free_streams@12 = libusb_free_streams
   libusb_free_transfer
   libusb_free_transfer@4 = libusb_free_transfer
   libusb_free_usb_2_0_extension_descriptor
@@ -146,6 +150,10 @@ EXPORTS
   libusb_strerror@4 = libusb_strerror
   libusb_submit_transfer
   libusb_submit_transfer@4 = libusb_submit_transfer
+  libusb_transfer_get_stream_id
+  libusb_transfer_get_stream_id@4 = libusb_transfer_get_stream_id
+  libusb_transfer_set_stream_id
+  libusb_transfer_set_stream_id@8 = libusb_transfer_set_stream_id
   libusb_try_lock_events
   libusb_try_lock_events@4 = libusb_try_lock_events
   libusb_unlock_event_waiters
index 4a845c5..3951ffe 100644 (file)
@@ -7,12 +7,12 @@
 #define LIBUSB_MINOR 0
 #endif
 #ifndef LIBUSB_MICRO
-#define LIBUSB_MICRO 18
+#define LIBUSB_MICRO 19
 #endif
 #ifndef LIBUSB_NANO
 #define LIBUSB_NANO 0
 #endif
 /* LIBUSB_RC is the release candidate suffix. Should normally be empty. */
 #ifndef LIBUSB_RC
-#define LIBUSB_RC ""
+#define LIBUSB_RC "-rc1"
 #endif
index f9dd271..1be87a5 100644 (file)
@@ -1 +1 @@
-#define LIBUSB_NANO 10891
+#define LIBUSB_NANO 10892