From e4f5a558de3a6044a7fe704017362880c591e2b2 Mon Sep 17 00:00:00 2001 From: Yang Date: Sat, 29 Aug 2020 23:56:30 +1000 Subject: [PATCH] Prepare for release 1.13.0. --- CHANGELOG.md | 7 +++++++ README.md | 2 +- gradle.properties | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f5e61ca..d31f40ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## Version 1.13.0 + +_2020-08-29_ + +* New `RobotAssertions.viewNotExists(@IdRes vararg viewIds: Int)` for asserting that views are not present in the view hierarchy. +* New `withItemViewType(@IdRes recyclerViewId: Int, itemViewType: Int): Matcher` for matching `RecyclerView` item by `itemViewType`. + ## Version 1.12.0 _2020-08-16_ diff --git a/README.md b/README.md index b42823e5..63034b8f 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Dependencies are hosted on [Maven Central][maven-central]. Latest stable version: ```groovy -def blueprint_version = "1.12.0" +def blueprint_version = "1.13.0" ``` If you use **Kotlin Coroutines and Flow**: diff --git a/gradle.properties b/gradle.properties index 744d6cf8..2071d11a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=io.github.reactivecircus.blueprint -VERSION_NAME=1.13.0-SNAPSHOT +VERSION_NAME=1.13.0 POM_URL=https://github.com/reactivecircus/blueprint POM_SCM_URL=https://github.com/reactivecircus/blueprint