summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Hjelm <hjelmn@me.com>2019-04-05 12:15:48 -0600
committerNathan Hjelm <hjelmn@me.com>2019-04-05 12:15:48 -0600
commitacaa806ed0d3ec0ee84697ae6bd9ae7a5d031ada (patch)
treeb89fd72119b8aeb43b1d62b2397dfaebd9aad257
parentdea5a8e96891134829b97a75adfdf5586f908b6d (diff)
downloadlibusb-acaa806ed0d3ec0ee84697ae6bd9ae7a5d031ada.tar.gz
update to 1.0.23-rc1v1.0.23-rc1
Signed-off-by: Nathan Hjelm <hjelmn@me.com>
-rw-r--r--ChangeLog7
-rw-r--r--libusb/version.h4
-rw-r--r--libusb/version_nano.h2
3 files changed, 9 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index d1e39d0..df7b9a6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,16 +1,21 @@
For detailed information about the changes below, please see the git log or
visit: http://log.libusb.info
-2018-12-05: v1.0.23 (in progress)
+2019-04-05: v1.0.23 (in progress)
* Add German translation (#446)
* Add Hungarian translation (#493)
+* Android: Improved support for Android
* configure.ac: Fix detection of clock_gettime library (#439)
* Darwin(macOS): Switch from using ResetDevice to USBDeviceReEnumerate (#455)
* Darwin(macOS): Remove code that changed the device class used (#428)
+* Darwin(macOS): Reduce hotplug timeout to 1ms (from 5s)
* New API libusb_set_log_cb() to redirect global and per context log
messages to the provided log handling function
+* New API libusb_wrap_sys_device to allow the user to specify the
+ usb device to use.
* Solaris: Break infinite recursion in backend clock_gettime
* Solaris: Enable timerfd on sunos when available
+* Windows: Add support for isochronous transfers with WinUSB
* Various other bug fixes and improvements
2018-03-24: v1.0.22:
diff --git a/libusb/version.h b/libusb/version.h
index c6dfe37..a7550b0 100644
--- a/libusb/version.h
+++ b/libusb/version.h
@@ -7,12 +7,12 @@
#define LIBUSB_MINOR 0
#endif
#ifndef LIBUSB_MICRO
-#define LIBUSB_MICRO 22
+#define LIBUSB_MICRO 23
#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 d242308..da94a6c 100644
--- a/libusb/version_nano.h
+++ b/libusb/version_nano.h
@@ -1 +1 @@
-#define LIBUSB_NANO 11364
+#define LIBUSB_NANO 11365