summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS1
-rw-r--r--ChangeLog4
-rw-r--r--libusb/version.h2
-rw-r--r--libusb/version_nano.h2
4 files changed, 6 insertions, 3 deletions
diff --git a/AUTHORS b/AUTHORS
index 4589a99..6c29e21 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -48,6 +48,7 @@ Sean McBride
Sebastian Pipping
Simon Haggett
Thomas Röfer
+Tim Roberts
Toby Peterson
Trygve Laugstøl
Uri Lublin
diff --git a/ChangeLog b/ChangeLog
index a271f0f..ec4153d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,7 @@
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
+2013-07-01: v1.0.16-rc2
* Add hotplug support for Darwin and Linux (#9)
* Add superspeed endpoint companion descriptor support (#15)
* Add BOS descriptor support (#15)
@@ -10,6 +10,8 @@ visit: http://log.libusbx.org
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)
+* Logging now use a single write call per log-message, avoiding log-message
+ "interlacing" when using multiple threads.
* 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)
diff --git a/libusb/version.h b/libusb/version.h
index a8818e2..ed59b48 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 "-rc1"
+#define LIBUSB_RC "-rc2"
#endif
diff --git a/libusb/version_nano.h b/libusb/version_nano.h
index 41e8b15..cfcd51f 100644
--- a/libusb/version_nano.h
+++ b/libusb/version_nano.h
@@ -1 +1 @@
-#define LIBUSB_NANO 10766
+#define LIBUSB_NANO 10767