Skip to content

Commit

Permalink
Release v.1.12.2. (#756)
Browse files Browse the repository at this point in the history
  • Loading branch information
geralt-encore authored and artem-zinnatullin committed Jan 22, 2017
1 parent 5033788 commit 184e12d
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 8 deletions.
24 changes: 21 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
StorIO Change Log
==========

## Version 1.12.2

_2017_01_22_

* Fixes for [#749](https://github.com/pushtorefresh/storio/issues/749), thanks to [@bluebery](https://github.com/bluebery) and [@michaelcarrano](https://github.com/michaelcarrano) for reporting.
* Fix typo in README. Thanks to [@mikeyxkcd](https://github.com/mikeyxkcd).
* Gradle 2.2.3.
* Build tools 25.0.2.
* Robolectric 3.1.4.

**Changes:**

* [PR 747](https://github.com/pushtorefresh/storio/pull/747): Updated gradle/plugin/tools versions.
* [PR 748](https://github.com/pushtorefresh/storio/pull/748): Update README.md dependency typo.
* [PR 750](https://github.com/pushtorefresh/storio/pull/750): Use annotationProcessor instead of apt.
* [PR 755](https://github.com/pushtorefresh/storio/pull/755): Update readme with annotationProcessor instead of apt.
* [PR 754](https://github.com/pushtorefresh/storio/pull/754): Fixes for resolver generators.

## Version 1.12.1

_2016_12_29_
Expand Down Expand Up @@ -135,7 +153,7 @@ _2015_12_30_
* Option to get one object for `StorIOSQLite` and `StorIOContentResolver`
* Handle backpressure for `Get` operation via RxJava (**requires RxJava 1.1.0**)
* `SQLiteTypeMapping` and `ContentResolverTypeMapping` generation
* Annotation processor for `StorIOContentResolver`
* Annotation processor for `StorIOContentResolver`
* Option to set different uri's for `insert`, `update` and `delete` (`StorIOContentResolver`)
* `PutResult` and `DeleteResult` now allow `0` updated tables
* Jacoco is alive!
Expand Down Expand Up @@ -194,12 +212,12 @@ _2015_10_01_
* `get().numberOfResults()` for both SQLite and ContentResolver!
* `@CheckResult` annotation for better IDE experience!
* `insertWithOnConflict()` for StorIOSQLite.
* We've added example of composite entity!
* We've added example of composite entity!

**Changes:**

* [PR 534](https://github.com/pushtorefresh/storio/pull/534) Add StorIOContentResolver get().numberOfResults()!
* [PR 533](https://github.com/pushtorefresh/storio/pull/533) Add StorIOSQLite get().numberOfResults()!
* [PR 533](https://github.com/pushtorefresh/storio/pull/533) Add StorIOSQLite get().numberOfResults()!
* [PR 531](https://github.com/pushtorefresh/storio/pull/531) Add @CheckResult annotation, makes life in the Android Studio Better!
* [PR 530](https://github.com/pushtorefresh/storio/pull/530) Add insertWithOnConflict() for StorIOSQLite!
* [PR 520](https://github.com/pushtorefresh/storio/pull/520) Example of UserWithTweets entity with custom Put/Get/Delete resolvers
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,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.12.1'
compile 'com.pushtorefresh.storio:sqlite:1.12.2'
// If you need StorIO for ContentResolver
compile 'com.pushtorefresh.storio:content-resolver:1.12.1'
compile 'com.pushtorefresh.storio:content-resolver:1.12.2'
// IN StorIO 2.0 we will remove default Scheduling from Rx Operations!
// You'll have to put subscribeOn() manually!
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION_CODE=26
VERSION_NAME=1.12.1
VERSION_CODE=27
VERSION_NAME=1.12.2
GROUP=com.pushtorefresh.storio

POM_DESCRIPTION=Modern API for SQLiteDatabase and ContentResolver
Expand All @@ -14,4 +14,4 @@ POM_DEVELOPER_ID=pushtorefresh
POM_DEVELOPER_NAME=Pushtorefresh

RELEASE_REPOSITORY_URL=https://oss.sonatype.org/service/local/staging/deploy/maven2/
SNAPSHOT_REPOSITORY_URL=https://oss.sonatype.org/content/repositories/snapshots
SNAPSHOT_REPOSITORY_URL=https://oss.sonatype.org/content/repositories/snapshots

0 comments on commit 184e12d

Please sign in to comment.