From f13b93380bb27f9388e038dd096ef2d2ccf2d70c Mon Sep 17 00:00:00 2001 From: drakeet Date: Thu, 21 Sep 2017 12:39:07 +0800 Subject: [PATCH] Tagged v1.1.0 --- README.md | 4 ++-- README_CN.md | 4 ++-- library/gradle.properties | 4 ++-- sample/build.gradle | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 8b26fdc..9e9d4bf 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ In your `build.gradle`: ```groovy dependencies { - compile 'me.drakeet.floo:floo:1.0.5' + compile 'me.drakeet.floo:floo:1.1.0' } ``` @@ -24,7 +24,7 @@ If you are using `com.android.tools.build:gradle:3.+`, use this instead: ```groovy dependencies { - implementation 'me.drakeet.floo:floo:1.0.5' + implementation 'me.drakeet.floo:floo:1.1.0' } ``` diff --git a/README_CN.md b/README_CN.md index 5949eff..ee5999e 100644 --- a/README_CN.md +++ b/README_CN.md @@ -16,7 +16,7 @@ _注:本中文版 README 可能不会及时更新,请以英文版为主_ ```groovy dependencies { - compile 'me.drakeet.floo:floo:1.0.5' + compile 'me.drakeet.floo:floo:1.1.0' } ``` @@ -24,7 +24,7 @@ dependencies { ```groovy dependencies { - implementation 'me.drakeet.floo:floo:1.0.5' + implementation 'me.drakeet.floo:floo:1.1.0' } ``` diff --git a/library/gradle.properties b/library/gradle.properties index 8568409..7a146c6 100644 --- a/library/gradle.properties +++ b/library/gradle.properties @@ -31,8 +31,8 @@ POM_NAME=floo POM_ARTIFACT_ID=floo POM_PACKAGING=aar -VERSION_NAME=1.0.5 -VERSION_CODE=7 +VERSION_NAME=1.1.0 +VERSION_CODE=10 GROUP=me.drakeet.floo POM_DESCRIPTION=A router supporting AOP, stack control, cross-page message, and dynamic routing. POM_URL=http://github.com/drakeet/Floo diff --git a/sample/build.gradle b/sample/build.gradle index 2cdfa43..86a0971 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -27,8 +27,8 @@ android { applicationId "me.drakeet.floo.sample" minSdkVersion 9 targetSdkVersion 25 - versionCode 6 - versionName "1.0.2.2" + versionCode 10 + versionName "1.1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" }