diff --git a/CHANGELOG.md b/CHANGELOG.md index df7c0849..62f18670 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -109,3 +109,10 @@ ### Version 0.15.2 * [Android] Set view tree owners for RibActivity +### Version 0.15.3 +* Add RibCoroutineWorker.bind that receives multiple workers by @FranAguilera in https://github.com/uber/RIBs/pull/607 +* Change default CoroutineContext from empty to default for the RibCoroutineWorker<>Worker conversion by @FranAguilera in https://github.com/uber/RIBs/pull/608 +* Add `RibCoroutineWorker` factory method with `CoroutineScope` as receiver by @psteiger in https://github.com/uber/RIBs/pull/610 +* Update coroutines 1.7.3 by @tyvsmith in https://github.com/uber/RIBs/pull/609 +* Bump kotlinx.coroutines.test to 1.7.3 by @psteiger in https://github.com/uber/RIBs/pull/611 + diff --git a/README.md b/README.md index e83db366..05fa1b53 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.15.2' - implementation 'com.uber.rib:rib-android:0.15.2' - testImplementation 'com.uber.rib:rib-test:0.15.2' + annotationProcessor 'com.uber.rib:rib-compiler-test:0.15.3' + implementation 'com.uber.rib:rib-android:0.15.3' + testImplementation 'com.uber.rib:rib-test:0.15.3' } ``` 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 e64d2de2..c3a50809 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -13,7 +13,7 @@ # org.gradle.parallel=true GROUP=com.uber.rib -VERSION_NAME=0.15.3-SNAPSHOT +VERSION_NAME=0.15.3 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 4cbcbca5..249db737 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.15.2' + implementation 'com.uber.rib:rib-coroutines-test:0.15.3' } ``` diff --git a/android/libraries/rib-coroutines/README.md b/android/libraries/rib-coroutines/README.md index d299b6d4..13c66634 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.15.2' + implementation 'com.uber.rib:rib-coroutines:0.15.3' } ```