From 402a5211a972fa600ec8aa901d829e46799cad4a Mon Sep 17 00:00:00 2001 From: tys Date: Fri, 12 May 2023 16:03:09 -0700 Subject: [PATCH] Prepare for release 0.14.2 --- CHANGELOG.md | 4 ++++ README.md | 6 +++--- android/gradle.properties | 2 +- android/libraries/rib-coroutines-test/README.md | 2 +- android/libraries/rib-coroutines/README.md | 2 +- 5 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d6efafae5..a829938f3 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -87,3 +87,7 @@ ### Version 0.14.1 * [Android] Open lifecycleFlow, thus enabling it for mocking * [Android] [WorkerBinder] Guard against potential Worker.coroutineContext being null while using Mockito + +### Version 0.14.2i +* [Android] Fix potential for deadlocks in `Worker` binding. by @psteiger in https://github.com/uber/RIBs/pull/582 +* [Android] Add Rib Worker demo app by @FranAguilera in https://github.com/uber/RIBs/pull/575 diff --git a/README.md b/README.md index 1bab1a181..81f5be082 100644 --- a/README.md +++ b/README.md @@ -49,9 +49,9 @@ To integrate the recommended minimum setup for RIBs add the following to your `b ```gradle dependencies { - annotationProcessor 'com.uber.rib:rib-compiler-test:0.14.1' - implementation 'com.uber.rib:rib-android:0.14.1' - testImplementation 'com.uber.rib:rib-test:0.14.1' + annotationProcessor 'com.uber.rib:rib-compiler-test:0.14.2' + implementation 'com.uber.rib:rib-android:0.14.2' + testImplementation 'com.uber.rib:rib-test:0.14.2' } ``` There are a number of extension packages available as well including Kotlin extensions, Jetpack Compose support, Coroutines support diff --git a/android/gradle.properties b/android/gradle.properties index 59dc7e7d7..9d87cf05d 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -13,7 +13,7 @@ # org.gradle.parallel=true GROUP=com.uber.rib -VERSION_NAME=0.14.2-SNAPSHOT +VERSION_NAME=0.14.2 POM_DESCRIPTION=RIBs is the cross-platform architecture behind many mobile apps at Uber. This framework is designed for mobile apps with a large number of engineers and nested states. POM_URL=https://github.com/uber/RIBs/ POM_SCM_URL=https://github.com/uber/RIBs/ diff --git a/android/libraries/rib-coroutines-test/README.md b/android/libraries/rib-coroutines-test/README.md index ceaa7e506..bd241274d 100644 --- a/android/libraries/rib-coroutines-test/README.md +++ b/android/libraries/rib-coroutines-test/README.md @@ -5,7 +5,7 @@ This module is responsible for defining the coroutines test utils for the rib-co ## Installation ```gradle dependencies { - implementation 'com.uber.rib:rib-coroutines-test:0.14.1' + implementation 'com.uber.rib:rib-coroutines-test:0.14.2' } ``` diff --git a/android/libraries/rib-coroutines/README.md b/android/libraries/rib-coroutines/README.md index 2f2c191a0..688659bd8 100644 --- a/android/libraries/rib-coroutines/README.md +++ b/android/libraries/rib-coroutines/README.md @@ -5,7 +5,7 @@ This module is responsible for defining the coroutines extensions for the rib-ba ## Installation ```gradle dependencies { - implementation 'com.uber.rib:rib-coroutines:0.14.1' + implementation 'com.uber.rib:rib-coroutines:0.14.2' } ```