summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Hjelm <hjelmn@me.com>2016-07-21 23:12:56 -0600
committerNathan Hjelm <hjelmn@me.com>2016-07-21 23:12:56 -0600
commit7ce85c4679a31a7193d8d4651604ef2776a007ac (patch)
tree3f34fb5d65f550b8d121e9b5d2fcc9183842325d
parentbd8d5b5019b72b2dc2d074d96c9992e2f6e7e0b7 (diff)
downloadlibusb-7ce85c4679a31a7193d8d4651604ef2776a007ac.tar.gz
libusb 1.0.21-rc1v1.0.21-rc1
Signed-off-by: Nathan Hjelm <hjelmn@me.com>
-rw-r--r--ChangeLog9
-rw-r--r--libusb/version.h4
-rw-r--r--libusb/version_nano.h2
3 files changed, 12 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index fc5fc2a..53416f4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,15 @@
For detailed information about the changes below, please see the git log or
visit: http://log.libusb.info
+2016-07-20: v1.0.21:
+* Darwin: Ignore root hub simulation devices
+* Darwin: Improved support for OS X El Capitan
+* Windows: Add Visual Studio 2015 support
+* Prevent attempts to recursively hande events
+* Fix race condition in handle_timeout()
+* Allow transferred argument to be optional in bulk APIs
+* Various other bug fixes and improvements
+
2015-09-13: v1.0.20
* Add Haiku support
* Fix multiple memory and resource leaks (#16, #52, #76, #81)
diff --git a/libusb/version.h b/libusb/version.h
index 0e3a363..e1a28e0 100644
--- a/libusb/version.h
+++ b/libusb/version.h
@@ -7,12 +7,12 @@
#define LIBUSB_MINOR 0
#endif
#ifndef LIBUSB_MICRO
-#define LIBUSB_MICRO 20
+#define LIBUSB_MICRO 21
#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 3687c25..867375c 100644
--- a/libusb/version_nano.h
+++ b/libusb/version_nano.h
@@ -1 +1 @@
-#define LIBUSB_NANO 11120
+#define LIBUSB_NANO 11121