From 64e33400c7178d602b0d1286ad7603f06f002960 Mon Sep 17 00:00:00 2001 From: Artem Zinnatullin Date: Wed, 1 Jul 2015 04:56:47 +0500 Subject: [PATCH] Release 1.0.0! --- README.md | 21 +++++++++++++++++---- docs/StorIOSQLite.md | 4 ++-- gradle.properties | 4 ++-- 3 files changed, 21 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index d9d35715e..b4fea9fbd 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,5 @@ #### StorIO — modern API for SQLiteDatabase and ContentResolver -Currently in development. - #####Overview: * Powerful & Simple set of Operations: `Put`, `Get`, `Delete` * API for Humans: Type Safety, Immutability & Thread-Safety @@ -37,6 +35,21 @@ Easy ways to learn how to use `StorIO` -> check out `Documentation`, `Design Tes * [Design tests for StorIO ContentResolver](storio-content-resolver/src/test/java/com/pushtorefresh/storio/contentresolver/design) * [Sample App](storio-sample-app) + +####Download: +```groovy +// If you need StorIO for SQLite +compile 'com.pushtorefresh.storio:sqlite:1.0.0' + +// If you need StorIO for ContentResolver +compile 'com.pushtorefresh.storio:content-resolver:1.0.0' + +// Notice that RxJava is optional dependency for StorIO, +// So if you need it -> please add it manually. +``` + +You can find all releases on [Maven Central](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.pushtorefresh%22%20AND%20a%3A%22storio%22). + ####Some examples #####Get list of objects from SQLiteDatabase @@ -134,10 +147,10 @@ To **save you from coding boilerplate classes** we created **Annotation Processo ```groovy dependencies { // At the moment there is annotation processor only for StorIOSQLite - compile 'com.pushtorefresh.storio:sqlite-annotations:not-published-yet' + compile 'com.pushtorefresh.storio:sqlite-annotations:insert-latest-version-here' // We recommend to use Android Gradle Apt plugin: https://bitbucket.org/hvisser/android-apt - apt 'com.pushtorefresh.storio:sqlite-annotation-processors:not-published-yet' + apt 'com.pushtorefresh.storio:sqlite-annotation-processors:insert-latest-version-here' } ``` diff --git a/docs/StorIOSQLite.md b/docs/StorIOSQLite.md index 9f6afcb2f..4182e194e 100644 --- a/docs/StorIOSQLite.md +++ b/docs/StorIOSQLite.md @@ -284,10 +284,10 @@ To **save you from coding boilerplate classes** we created **Annotation Processo ```groovy dependencies { // At the moment there is annotation processor only for StorIOSQLite - compile 'com.pushtorefresh.storio:sqlite-annotations:not-published-yet' + compile 'com.pushtorefresh.storio:sqlite-annotations:insert-latest-version-here' // We recommend to use Android Gradle Apt plugin: https://bitbucket.org/hvisser/android-apt - apt 'com.pushtorefresh.storio:sqlite-annotations-processor:not-published-yet' + apt 'com.pushtorefresh.storio:sqlite-annotations-processor:insert-latest-version-here' } ``` diff --git a/gradle.properties b/gradle.properties index ac5bf6652..d0e491363 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ -VERSION_CODE=5 -VERSION_NAME=0.9.5-SNAPSHOT +VERSION_CODE=6 +VERSION_NAME=1.0.0 GROUP=com.pushtorefresh.storio POM_DESCRIPTION=Modern API for SQLiteDatabase and ContentResolver