summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2014-05-02 15:25:26 +0200
committerHans de Goede <hdegoede@redhat.com>2014-05-19 11:03:07 +0200
commitedaa1afe5da410c4fc3d23fd163ba0d60784a3e2 (patch)
tree6db6bfd07059d89f39ad917262d52079bf907ae5
parentc8e9269a06afcb786913310cc01f32209acc22c6 (diff)
downloadlibusb-edaa1afe5da410c4fc3d23fd163ba0d60784a3e2.tar.gz
libusb 1.0.19-rc1
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
-rw-r--r--AUTHORS4
-rw-r--r--ChangeLog10
-rw-r--r--libusb/libusb-1.0.def8
-rw-r--r--libusb/version.h4
-rw-r--r--libusb/version_nano.h2
5 files changed, 23 insertions, 5 deletions
diff --git a/AUTHORS b/AUTHORS
index c650646..e44b366 100644
--- 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
diff --git a/ChangeLog b/ChangeLog
index 9894d47..3927cef 100644
--- 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)
diff --git a/libusb/libusb-1.0.def b/libusb/libusb-1.0.def
index cb0e32a..d45cfc5 100644
--- a/libusb/libusb-1.0.def
+++ b/libusb/libusb-1.0.def
@@ -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
diff --git a/libusb/version.h b/libusb/version.h
index 4a845c5..3951ffe 100644
--- a/libusb/version.h
+++ b/libusb/version.h
@@ -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
diff --git a/libusb/version_nano.h b/libusb/version_nano.h
index f9dd271..1be87a5 100644
--- a/libusb/version_nano.h
+++ b/libusb/version_nano.h
@@ -1 +1 @@
-#define LIBUSB_NANO 10891
+#define LIBUSB_NANO 10892