diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a70eee..b2af967 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ CHANGELOG ========= +Release 6.0.2 +-------------------------------------- +- VID/PID pairs are sorted and searched in a faster way. +- FTDI driver improved. + Release 6.0.2 -------------------------------------- - Solved issue when disconnecting multiple serial ports. @@ -9,6 +14,6 @@ Release 6.0.1 -------------------------------------- - Internal serial buffer now uses [Okio](https://github.com/square/okio). This erases the 16kb write limitation from previous versions and reduces memory footprint. -- Improved CP2102 driver and added more VID/PID pairs -- Added a [utility class for handling the common problem of split received information in some chipsets](https://github.com/felHR85/UsbSerial/blob/master/usbserial/src/main/java/com/felhr/utils/ProtocolBuffer.java) +- Improved CP2102 driver and added more VID/PID pairs. +- Added a [utility class for handling the common problem of split received information in some chipsets](https://github.com/felHR85/UsbSerial/blob/master/usbserial/src/main/java/com/felhr/utils/ProtocolBuffer.java). diff --git a/README.md b/README.md index 2fe81b9..0a9fc6c 100644 --- a/README.md +++ b/README.md @@ -192,7 +192,7 @@ Then add the dependency to your module's build.gradle: /app/build.gradle ```groovy -implementation 'com.github.felHR85:UsbSerial:6.0.2' +implementation 'com.github.felHR85:UsbSerial:6.0.3' ``` TO-DO diff --git a/gradle.properties b/gradle.properties index 15fd7f5..62e1973 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=6.0.2 +VERSION_NAME=6.0.3 VERSION_CODE=1 ANDROID_BUILD_MIN_SDK_VERSION=12 ANDROID_BUILD_TARGET_SDK_VERSION=27