Skip to content

Commit 84209b4

Browse files
committed
libusb 1.0.22-rc1
Signed-off-by: Chris Dickens <christopher.a.dickens@gmail.com>
1 parent fef88bf commit 84209b4

File tree

4 files changed

+52
-5
lines changed

4 files changed

+52
-5
lines changed

AUTHORS

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,37 @@ Copyright © 2010-2012 Michael Plante <michael.plante@gmail.com>
88
Copyright © 2011-2013 Hans de Goede <hdegoede@redhat.com>
99
Copyright © 2012-2013 Martin Pieuchot <mpi@openbsd.org>
1010
Copyright © 2012-2013 Toby Gray <toby.gray@realvnc.com>
11-
Copyright © 2013-2015 Chris Dickens <christopher.a.dickens@gmail.com>
11+
Copyright © 2013-2018 Chris Dickens <christopher.a.dickens@gmail.com>
1212

1313
Other contributors:
14+
Adrian Bunk
1415
Akshay Jaggi
1516
Alan Ott
1617
Alan Stern
1718
Alex Vatchenko
1819
Andrew Fernandes
20+
Andy Chunyu
21+
Andy McFadden
22+
Angus Gratton
23+
Anil Nair
1924
Anthony Clay
2025
Antonio Ospite
2126
Artem Egorkine
2227
Aurelien Jarno
2328
Bastien Nocera
2429
Bei Zhang
2530
Benjamin Dobell
31+
Brent Rector
2632
Carl Karsten
33+
Christophe Zeitouny
2734
Colin Walters
2835
Dave Camarillo
2936
David Engraf
3037
David Moore
3138
Davidlohr Bueso
39+
Dmitry Fleytman
40+
Doug Johnston
41+
Evan Hunter
3242
Federico Manzan
3343
Felipe Balbi
3444
Florian Albrechtskirchinger
@@ -41,23 +51,34 @@ Hans Ulrich Niedermann
4151
Hector Martin
4252
Hoi-Ho Chan
4353
Ilya Konstantinov
54+
Jakub Klama
4455
James Hanko
56+
Jeffrey Nichols
57+
Johann Richard
4558
John Sheu
59+
Jonathon Jongsma
60+
Joost Muller
61+
Josh Gao
4662
Joshua Blake
4763
Justin Bischoff
64+
KIMURA Masaru
4865
Karsten Koenig
4966
Konrad Rzepecki
5067
Kuangye Guo
5168
Lars Kanis
5269
Lars Wirzenius
70+
Lei Chen
5371
Luca Longinotti
5472
Marcus Meissner
5573
Markus Heidelberg
5674
Martin Ettl
5775
Martin Koegler
76+
Matthew Stapleton
5877
Matthias Bolte
78+
Michel Zou
5979
Mike Frysinger
6080
Mikhail Gusarov
81+
Morgan Leborgne
6182
Moritz Fischer
6283
Ларионов Даниил
6384
Nicholas Corgan
@@ -66,10 +87,17 @@ Orin Eman
6687
Paul Fertser
6788
Pekka Nikander
6889
Rob Walker
90+
Romain Vimont
91+
Roman Kalashnikov
92+
Sameeh Jubran
6993
Sean McBride
7094
Sebastian Pipping
95+
Sergey Serb
7196
Simon Haggett
7297
Simon Newton
98+
Stefan Agner
99+
Stefan Tauner
100+
Steinar H. Gunderson
73101
Thomas Röfer
74102
Tim Hutt
75103
Tim Roberts
@@ -81,9 +109,11 @@ Uri Lublin
81109
Vasily Khoruzhick
82110
Vegard Storheil Eriksen
83111
Venkatesh Shukla
112+
Vianney le Clément de Saint-Marcq
113+
Victor Toso
84114
Vitali Lovich
115+
William Skellenger
85116
Xiaofan Chen
86117
Zoltán Kovács
87118
Роман Донченко
88119
parafin
89-
xantares

ChangeLog

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
For detailed information about the changes below, please see the git log or
22
visit: http://log.libusb.info
33

4+
2018-01-08: v1.0.22:
5+
* New libusb_set_option() API
6+
* Fix transfer timeout not being cleared upon resubmission
7+
* Report super speed plus devices on modern Linux and macOS
8+
* Darwin: SDK fixes and improvements
9+
* Linux: Let initialization succeed when no devices are present
10+
* Linux: Mark internal file descriptors with CLOEXEC flag
11+
* Solaris: Add support for attach/detach kernel driver
12+
* Windows: Add dynamic UsbDk backend selection
13+
* Windows: Add isochronous transfer support via libusbK
14+
* Windows: Add Visual Studio 2017 support
15+
* Windows: Fix enumeration problems on Windows 8 and later
16+
* Windows: Major rework of poll() emulation
17+
* Windows: Numerous HID API fixes
18+
* Windows: Support cancelation of individual transfers (Vista and later)
19+
* Various other bug fixes and improvements
20+
421
2016-10-01: v1.0.21:
522
* Core: Refactor code related to transfer flags and timeout handling
623
* Darwin: Ignore root hub simulation devices

libusb/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
#define LIBUSB_MINOR 0
88
#endif
99
#ifndef LIBUSB_MICRO
10-
#define LIBUSB_MICRO 21
10+
#define LIBUSB_MICRO 22
1111
#endif
1212
#ifndef LIBUSB_NANO
1313
#define LIBUSB_NANO 0
1414
#endif
1515
/* LIBUSB_RC is the release candidate suffix. Should normally be empty. */
1616
#ifndef LIBUSB_RC
17-
#define LIBUSB_RC ""
17+
#define LIBUSB_RC "-rc1"
1818
#endif

libusb/version_nano.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
#define LIBUSB_NANO 11293
1+
#define LIBUSB_NANO 11294

0 commit comments

Comments
 (0)