summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPete Batard <pete@akeo.ie>2014-01-08 23:51:38 +0000
committerPete Batard <pete@akeo.ie>2014-01-08 23:51:45 +0000
commit9a34bb705eaa74719d12ee6e0268790cf46aafce (patch)
treec3b41b9dcb23edd4260e2adc0e58ed7b9218567e
parent1eff220474f63d7ea7f8f99bef2a3da9da5324eb (diff)
downloadlibusb-9a34bb705eaa74719d12ee6e0268790cf46aafce.tar.gz
libusb 1.0.18-rc1v1.0.18-rc1
-rw-r--r--AUTHORS9
-rw-r--r--ChangeLog8
-rw-r--r--libusb/version.h4
-rw-r--r--libusb/version_nano.h2
4 files changed, 20 insertions, 3 deletions
diff --git a/AUTHORS b/AUTHORS
index 2e80830..1bc6375 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -13,10 +13,12 @@ Other contributors:
Alan Ott
Alan Stern
Alex Vatchenko
+Andrew Fernandes
Anthony Clay
Artem Egorkine
Aurelien Jarno
Bastien Nocera
+Bei Zhang
Benjamin Dobell
Chris Dickens
Colin Walters
@@ -28,20 +30,27 @@ Federico Manzan
Felipe Balbi
Florian Albrechtskirchinger
Francesco Montorsi
+Francisco Facioni
Graeme Gill
+Gustavo Zacarias
Hans Ulrich Niedermann
Hector Martin
Hoi-Ho Chan
Ilya Konstantinov
James Hanko
+Joshua Blake
+Karsten Koenig
Konrad Rzepecki
+Kuangye Guo
Lars Wirzenius
Luca Longinotti
Martin Koegler
Matthias Bolte
Mike Frysinger
Mikhail Gusarov
+Moritz Fischer
Nicholas Corgan
+Omri Iluz
Orin Eman
Paul Fertser
Pekka Nikander
diff --git a/ChangeLog b/ChangeLog
index f47cfe9..05d5750 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-01-08: v1.0.18-rc1
+* Fix multiple memory leaks
+* Fix a crash when HID transfers return no data on Windows
+* Ensure all pending events are consumed
+* Improve Android and ucLinux support
+* Multiple Windows improvements (error logging, VS2013, VIA xHCI support)
+* Multiple OS X improvements (broken compilation, SIGFPE, 64bit support)
+
2013-09-06: v1.0.17
* Hotplug callbacks now always get passed a libusb_context, even if it is
the default context. Previously NULL would be passed for the default context,
diff --git a/libusb/version.h b/libusb/version.h
index 09d9a9f..05046a4 100644
--- a/libusb/version.h
+++ b/libusb/version.h
@@ -7,12 +7,12 @@
#define LIBUSB_MINOR 0
#endif
#ifndef LIBUSB_MICRO
-#define LIBUSB_MICRO 17
+#define LIBUSB_MICRO 18
#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 0ef80dc..cba82c4 100644
--- a/libusb/version_nano.h
+++ b/libusb/version_nano.h
@@ -1 +1 @@
-#define LIBUSB_NANO 10862
+#define LIBUSB_NANO 10863