From f62fdbb26222d4b19fb20b68a735e2b7e5ab2f69 Mon Sep 17 00:00:00 2001 From: Artem Zinnatullin Date: Sat, 29 Aug 2015 21:12:42 +0300 Subject: [PATCH] Release 1.3.0 --- CHANGELOG.md | 13 +++++++++++++ README.md | 4 ++-- gradle.properties | 4 ++-- 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f9ad8d73..b8054d1a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ StorIO Change Log ========== +## Version 1.3.0 + +_2015_08_29_ + +* **StorIOSQLite Annotation Processor now supports blobs `byte[]`!** +* We've added example of relations implementation (R from ORM) to the Sample App! + +**Changes:** + +* [PR 498](https://github.com/pushtorefresh/storio/pull/498) Add support for `byte[]` into StorIOSQLite annotation processor +* [PR 494](https://github.com/pushtorefresh/storio/pull/494) Relations example! + + ## Version 1.2.1 _2015_08_17_ diff --git a/README.md b/README.md index 8db2ab9e7..68db94207 100644 --- a/README.md +++ b/README.md @@ -40,10 +40,10 @@ Easy ways to learn how to use `StorIO` -> check out `Documentation`, `Design Tes ####Download: ```groovy // If you need StorIO for SQLite -compile 'com.pushtorefresh.storio:sqlite:1.2.1' +compile 'com.pushtorefresh.storio:sqlite:1.3.0' // If you need StorIO for ContentResolver -compile 'com.pushtorefresh.storio:content-resolver:1.2.1' +compile 'com.pushtorefresh.storio:content-resolver:1.3.0' // Notice that RxJava is optional dependency for StorIO, // So if you need it -> please add it manually. diff --git a/gradle.properties b/gradle.properties index 5249a203c..85d6e8309 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ -VERSION_CODE=12 -VERSION_NAME=1.2.1 +VERSION_CODE=13 +VERSION_NAME=1.3.0 GROUP=com.pushtorefresh.storio POM_DESCRIPTION=Modern API for SQLiteDatabase and ContentResolver