diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ec04ce0..5579f9e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Change Log +## Version 1.10.0 + +_2020-07-17_ + +* New `RobotAssertions.viewEndsWithText(@IdRes viewId: Int, expected: String)` for asserting that a view has text that ends with the expected string. +* Fix `RobotAssertions.viewStartsWithText(@IdRes viewId: Int, expected: String)`. +* Depend on `kotlin-sdtlib` instead of `kotlin-stdlib-jdk8` +* Update Coroutines, AndroidX and MDC. + ## Version 1.9.0 _2020-05-30_ diff --git a/README.md b/README.md index 0ec2081f..181a75e5 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.9.0" +def blueprint_version = "1.10.0" ``` If you use **Kotlin Coroutines and Flow**: diff --git a/gradle.properties b/gradle.properties index b2682004..dea63c9b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=io.github.reactivecircus.blueprint -VERSION_NAME=1.10.0-SNAPSHOT +VERSION_NAME=1.10.0 POM_URL=https://github.com/reactivecircus/blueprint POM_SCM_URL=https://github.com/reactivecircus/blueprint