Skip to content

Commit

Permalink
Release 1.0.0!
Browse files Browse the repository at this point in the history
  • Loading branch information
artem-zinnatullin committed Jun 30, 2015
1 parent 164e960 commit 64e3340
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 8 deletions.
21 changes: 17 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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'
}
```

Expand Down
4 changes: 2 additions & 2 deletions docs/StorIOSQLite.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
```

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 64e3340

Please sign in to comment.