From 5e2bbdaa16ee20e7fa612011940777f07f51b4c7 Mon Sep 17 00:00:00 2001 From: Josef Raska <6277721+jraska@users.noreply.github.com> Date: Sat, 21 Mar 2020 22:17:06 +0100 Subject: [PATCH] Release 1.1.2 (#54) --- README.md | 7 ++----- build.gradle | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 96f8635..8925527 100644 --- a/README.md +++ b/README.md @@ -47,17 +47,14 @@ Don't forget to use `InstantTaskExecutorRule` from `androidx.arch.core:core-test ##### Kotlin users: ```groovy -testImplementation 'com.jraska.livedata:testing-ktx:1.1.1' +testImplementation 'com.jraska.livedata:testing-ktx:1.1.2' ``` ##### Java users: ```groovy -testImplementation 'com.jraska.livedata:testing:1.1.1' +testImplementation 'com.jraska.livedata:testing:1.1.2' ``` -If you are not using `androidx` namespace yet, please use version `0.2.1`. Explanation [here](https://android-developers.googleblog.com/2018/05/hello-world-androidx.html). - - ## Philosophy This library is created in a belief that to effective and valuable test should be fast to write and model real code usage. diff --git a/build.gradle b/build.gradle index 8a51e9b..91afebd 100644 --- a/build.gradle +++ b/build.gradle @@ -27,6 +27,6 @@ task clean(type: Delete) { } ext { - version = '1.1.1' + version = '1.1.2' versionCode = 13 }