diff --git a/README.md b/README.md index 8be2305..9901136 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ repositories { } dependencies { - compile 'com.github.kimkevin:cachepot:1.0.1' + compile 'com.github.kimkevin:cachepot:1.1.0' } ``` @@ -26,7 +26,7 @@ Maven: com.github.kimkevin cachepot - 1.0.0 + 1.1.0 ``` diff --git a/gradle.properties b/gradle.properties index 808d32a..2340118 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,7 +8,7 @@ JUNIT_VERSION=4.12 VERSION_NAME=1.1.0 VERSION_CODE=3 -RELEASE_VERSION_NAME = 1.0.2 +RELEASE_VERSION_NAME = 1.0.1 USER_ORG=kimkevin GROUP=com.github.kimkevin diff --git a/library/build.gradle b/library/build.gradle index ab94d91..a80e7f1 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -46,7 +46,6 @@ dependencies { testCompile "junit:junit:${JUNIT_VERSION}" testCompile 'org.mockito:mockito-all:1.10.19' testCompile "org.hamcrest:hamcrest-all:1.3" - } publish { @@ -56,5 +55,5 @@ publish { publishVersion = VERSION_NAME desc = POM_DESCRIPTION website = POM_URL - uploadName=UPLOAD_NAME + uploadName = UPLOAD_NAME } \ No newline at end of file diff --git a/sample/build.gradle b/sample/build.gradle index 04c6a04..3e79e55 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -52,5 +52,5 @@ dependencies { compile project(path: ':library') debugCompile project(path: ':library') - releaseCompile "com.github.kimkevin:cachepot:${RELEASE_VERSION_NAME}" +// releaseCompile "com.github.kimkevin:cachepot:${RELEASE_VERSION_NAME}" }