pull/225/head 6.0.4
Felipe Herranz 2019-03-09 21:46:15 +01:00
rodzic dcc5063197
commit 9458b7f136
3 zmienionych plików z 7 dodań i 6 usunięć

Wyświetl plik

@ -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.3'
implementation 'com.github.felHR85:UsbSerial:6.0.4'
```
TO-DO

Wyświetl plik

@ -1,4 +1,4 @@
VERSION_NAME=6.0.3
VERSION_NAME=6.0.4
VERSION_CODE=1
ANDROID_BUILD_MIN_SDK_VERSION=12
ANDROID_BUILD_TARGET_SDK_VERSION=27

Wyświetl plik

@ -14,14 +14,14 @@ esac
done
# Show error message if no version was provided
if [ -z ${VERSION} ];
if [[ -z ${VERSION} ]];
then
echo "UsbSerial: Error!! No version was provided"
exit 0
fi
# Show error message if no message was provided
if [ -z ${MESSAGE} ];
if [[ -z ${MESSAGE} ]];
then
echo "UsbSerial: Error!! No message was provided"
exit 0
@ -45,8 +45,9 @@ ex -sc "${LINE}i|$GRADLE_LINE" -cx README.md
./gradlew clean build
# Git stuff
git commit -m $MESSAGE
git tag $VERSION
git add .
git commit -m "${MESSAGE}"
git tag ${VERSION}
git push origin master
git push --tags