summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Dickens <christopher.a.dickens@gmail.com>2015-07-29 01:06:37 -0700
committerChris Dickens <christopher.a.dickens@gmail.com>2015-07-29 01:06:37 -0700
commitd73bc723aaeb4e043bb079198b37f5e0b0726168 (patch)
tree693b758ab033139cc55918a483aa76090f612b14
parenta4d2cb89b0c4f10f6c0cc02a2657cbaa94135470 (diff)
downloadlibusb-d73bc723aaeb4e043bb079198b37f5e0b0726168.tar.gz
libusb 1.0.20-rc1v1.0.20-rc1
Signed-off-by: Chris Dickens <christopher.a.dickens@gmail.com>
-rw-r--r--AUTHORS13
-rw-r--r--ChangeLog18
-rw-r--r--libusb/version.h4
-rw-r--r--libusb/version_nano.h2
4 files changed, 31 insertions, 6 deletions
diff --git a/AUTHORS b/AUTHORS
index 95b1162..b7d7ac9 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -8,20 +8,22 @@ Copyright © 2010-2012 Michael Plante <michael.plante@gmail.com>
Copyright © 2011-2013 Hans de Goede <hdegoede@redhat.com>
Copyright © 2012-2013 Martin Pieuchot <mpi@openbsd.org>
Copyright © 2012-2013 Toby Gray <toby.gray@realvnc.com>
+Copyright © 2013-2015 Chris Dickens <christopher.a.dickens@gmail.com>
Other contributors:
+Akshay Jaggi
Alan Ott
Alan Stern
Alex Vatchenko
Andrew Fernandes
Anthony Clay
+Antonio Ospite
Artem Egorkine
Aurelien Jarno
Bastien Nocera
Bei Zhang
Benjamin Dobell
Carl Karsten
-Chris Dickens
Colin Walters
Dave Camarillo
David Engraf
@@ -32,6 +34,7 @@ Felipe Balbi
Florian Albrechtskirchinger
Francesco Montorsi
Francisco Facioni
+Gaurav Gupta
Graeme Gill
Gustavo Zacarias
Hans Ulrich Niedermann
@@ -48,7 +51,9 @@ Kuangye Guo
Lars Kanis
Lars Wirzenius
Luca Longinotti
+Marcus Meissner
Markus Heidelberg
+Martin Ettl
Martin Koegler
Matthias Bolte
Mike Frysinger
@@ -64,15 +69,21 @@ Rob Walker
Sean McBride
Sebastian Pipping
Simon Haggett
+Simon Newton
Thomas Röfer
+Tim Hutt
Tim Roberts
+Tobias Klauser
Toby Peterson
+Tormod Volden
Trygve Laugstøl
Uri Lublin
Vasily Khoruzhick
Vegard Storheil Eriksen
+Venkatesh Shukla
Vitali Lovich
Xiaofan Chen
Zoltán Kovács
Роман Донченко
+parafin
xantares
diff --git a/ChangeLog b/ChangeLog
index 30a346d..a30c01d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,14 +1,28 @@
For detailed information about the changes below, please see the git log or
visit: http://log.libusb.info
+2015-07-29: v1.0.20
+* Add Haiku support
+* Fix multiple memory and resource leaks (#16, #52, #76, #81)
+* Fix possible deadlock when executing transfer callback
+* New libusb_free_pollfds() API
+* Darwin: Fix devices not being detected on OS X 10.8 (#48)
+* Linux: Allow larger isochronous transfer submission (#23)
+* Windows: Fix broken builds Cygwin/MinGW builds and compiler warnings
+* Windows: Fix broken bus number lookup
+* Windows: Improve submission of control requests for composite devices
+* Improve efficiency of event handling
+* Improve speed of transfer submission in multi-threaded environments
+* Various other bug fixes and improvements
+The (#xx) numbers are libusb issue numbers, see ie:
+https://github.com/libusb/libusb/issues/16
+
2014-05-30: 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)
* Added Russian translation for libusb_strerror strings
* 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
diff --git a/libusb/version.h b/libusb/version.h
index 3305765..774dd07 100644
--- a/libusb/version.h
+++ b/libusb/version.h
@@ -7,12 +7,12 @@
#define LIBUSB_MINOR 0
#endif
#ifndef LIBUSB_MICRO
-#define LIBUSB_MICRO 19
+#define LIBUSB_MICRO 20
#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 cf35d90..feb4b30 100644
--- a/libusb/version_nano.h
+++ b/libusb/version_nano.h
@@ -1 +1 @@
-#define LIBUSB_NANO 10991
+#define LIBUSB_NANO 10992