From 37e5dfccd75cd8141c42cb2be6ea921413f4568d Mon Sep 17 00:00:00 2001 From: Felipe Herranz Date: Sun, 17 Feb 2019 18:11:07 +0100 Subject: [PATCH] release 6.0.2 --- CHANGELOG.md | 4 ++++ README.md | 2 +- gradle.properties | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index db9f97d7..3a70eeef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ CHANGELOG ========= +Release 6.0.2 +-------------------------------------- +- Solved issue when disconnecting multiple serial ports. + Release 6.0.1 -------------------------------------- - Internal serial buffer now uses [Okio](https://github.com/square/okio). This erases the 16kb write diff --git a/README.md b/README.md index c0caf56f..2fe81b9d 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.1' +implementation 'com.github.felHR85:UsbSerial:6.0.2' ``` TO-DO diff --git a/gradle.properties b/gradle.properties index 1193f55c..15fd7f51 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=6.0.1 +VERSION_NAME=6.0.2 VERSION_CODE=1 ANDROID_BUILD_MIN_SDK_VERSION=12 ANDROID_BUILD_TARGET_SDK_VERSION=27