From c90283272fb38c56ae6a06804de818e641810651 Mon Sep 17 00:00:00 2001 From: Anup Cowkur Date: Mon, 3 Feb 2014 13:53:08 +0530 Subject: [PATCH] Updated Readme and top level gradle.properties to point to v1.1.1 --- README.md | 6 +++--- gradle.properties | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 40b5de3..40eca86 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ try { ``` # Including in your project -You can directly [download the jar](https://github.com/anupcowkur/Reservoir/releases/download/v1.1/reservoir-1.1.jar) and add it to your project. You will also need to add the jars on which Reservoir depends i.e. [DiskLruCache](https://github.com/anupcowkur/Reservoir/releases/download/v1.1/disklrucache-2.0.2.jar), [Apache Commons IO](https://github.com/anupcowkur/Reservoir/releases/download/v1.1/commons-io-2.4.jar) and [GSON](https://github.com/anupcowkur/Reservoir/releases/download/v1.1/gson-2.2.4.jar). +You can directly [download the jar](https://github.com/anupcowkur/Reservoir/releases/download/v1.1/reservoir-1.1.1.jar) and add it to your project. You will also need to add the jars on which Reservoir depends i.e. [DiskLruCache](https://github.com/anupcowkur/Reservoir/releases/download/v1.1.1/disklrucache-2.0.2.jar), [Apache Commons IO](https://github.com/anupcowkur/Reservoir/releases/download/v1.1.1/commons-io-2.4.jar) and [GSON](https://github.com/anupcowkur/Reservoir/releases/download/v1.1.1/gson-2.2.4.jar). If you use Maven: @@ -101,14 +101,14 @@ If you use Maven: com.github.anupcowkur reservoir - 1.1 + 1.1.1 ``` or Gradle: ```groovy -compile 'com.github.anupcowkur:reservoir:1.1' +compile 'com.github.anupcowkur:reservoir:1.1.1' ``` # Sample diff --git a/gradle.properties b/gradle.properties index e05e0b1..c1fe22d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ -VERSION_NAME=1.1 -VERSION_CODE=2 +VERSION_NAME=1.1.1 +VERSION_CODE=3 GROUP=com.github.anupcowkur POM_DESCRIPTION=Android library to easily serialize and persist your objects on disk using key/value pairs.