summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTormod Volden <debian.tormod@gmail.com>2022-03-22 23:13:35 +0100
committerTormod Volden <debian.tormod@gmail.com>2022-03-27 19:37:43 +0200
commit78de7dc4b9010cb3c598cb9cf9e4fe647e030c38 (patch)
treec5ab221a824f36120caf3690c60133527924f270
parent19826aaf493961e0287ef2f2006a4941f84f9537 (diff)
downloadlibusb-78de7dc4b9010cb3c598cb9cf9e4fe647e030c38.tar.gz
libusb 1.0.26-rc1v1.0.26-rc1
Signed-off-by: Tormod Volden <debian.tormod@gmail.com>
-rw-r--r--AUTHORS7
-rw-r--r--ChangeLog11
-rw-r--r--libusb/version.h4
-rw-r--r--libusb/version_nano.h2
4 files changed, 21 insertions, 3 deletions
diff --git a/AUTHORS b/AUTHORS
index 61b0925..1d6389b 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -41,6 +41,7 @@ Baruch Siach
Bastien Nocera
Bei Zhang
Bence Csokas
+Benjamin Berg
Benjamin Dobell
Bohdan Tymkiv
Brent Rector
@@ -61,6 +62,7 @@ Dmitry Zakablukov
Doug Johnston
Evan Hunter
Evan Miller
+Fabrice Fontaine
Federico Manzan
Felipe Balbi
Florian Albrechtskirchinger
@@ -100,6 +102,7 @@ Juan Cruz Viotti
Julian Scheel
Justin Bischoff
Karsten Koenig
+Keith Ahluwalia
Kenjiro Tsuji
Kimura Masaru
Konrad Rzepecki
@@ -119,6 +122,7 @@ Markus Heidelberg
Martin Ettl
Martin Koegler
Martin Thierer
+Mathias Hjärtström
Matthew Stapleton
Matthias Bolte
Michael Dickens
@@ -144,6 +148,7 @@ Pino Toscano
Rob Walker
Romain Vimont
Roman Kalashnikov
+Ryan Hileman
Ryan Schmidt
Saleem Rashid
Sameeh Jubran
@@ -179,6 +184,7 @@ Vladimir Beloborodov
William Orr
William Skellenger
Xiaofan Chen
+Yegor Yefremov
Zhiqiang Liu
Zoltán Kovács
Сергей Валерьевич
@@ -188,5 +194,6 @@ jonner
orbitcowboy
parafin
RipleyTom
+Seneral
saur0n
winterrace
diff --git a/ChangeLog b/ChangeLog
index b443e30..d7f110c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,17 @@
For detailed information about the changes below, please see the git log or
visit: http://log.libusb.info
+2022-03-26: v1.0.26-rc1
+* Fix regression with transfer free's after closing device
+* Fix regression with destroyed context if API is misused
+* Workaround for applications using missing default context
+* Fix hotplog enumeration regression
+* Fix Windows isochronous transfer regression since 1.0.24
+* Build fixes for various platforms and configurations
+* Fix Windows HID multi-interface product string retrieval
+* Add interface bound checking for broken devices
+* Add umockdev tests on Linux
+
2022-01-31: v1.0.25
* Linux: Fix regression with some particular devices
* Linux: Fix regression with libusb_handle_events_timeout_completed()
diff --git a/libusb/version.h b/libusb/version.h
index 1fe9946..7888208 100644
--- a/libusb/version.h
+++ b/libusb/version.h
@@ -7,12 +7,12 @@
#define LIBUSB_MINOR 0
#endif
#ifndef LIBUSB_MICRO
-#define LIBUSB_MICRO 25
+#define LIBUSB_MICRO 26
#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 aaac777..46b5e01 100644
--- a/libusb/version_nano.h
+++ b/libusb/version_nano.h
@@ -1 +1 @@
-#define LIBUSB_NANO 11716
+#define LIBUSB_NANO 11717