Prepare for release 0.16.4

This commit is contained in:
psteiger@gmail.com
2025-09-15 21:41:09 -04:00
parent dfe2496586
commit 1a89871190
5 changed files with 16 additions and 6 deletions
+10
View File
@@ -136,3 +136,13 @@
* Increase buffer capacity for mutableRouterEvents flow within RibEvents by @RahulDMello in https://github.com/uber/RIBs/pull/635
* Add test asserting Rx subscription is disposed after `RibCoroutineWor… by @psteiger in https://github.com/uber/RIBs/pull/628
### Version 0.16.4
* Remove intrinsics usage in `RibCoroutineWorker` by @psteiger in https://github.com/uber/RIBs/pull/627
* Remove ios to prep for separate repos by @tyvsmith in https://github.com/uber/RIBs/pull/646
* fix url typo for ribs-ios by @tyvsmith in https://github.com/uber/RIBs/pull/647
* Replace the SharedFlow with a StateFlow in the Interactor class by @rysh88 in https://github.com/uber/RIBs/pull/651
* Remove Java 8 usage from repository. by @psteiger in https://github.com/uber/RIBs/pull/652
* Bump Kotlin, Compose, Coroutines, AGP. by @psteiger in https://github.com/uber/RIBs/pull/653
* Add tests for RibEvents buffer size configuration by @psteiger in https://github.com/uber/RIBs/pull/642
* `ScopeProvider.coroutineScope`: Fail silently when accessing outside of RIB scope. by @psteiger in https://github.com/uber/RIBs/pull/632
+3 -3
View File
@@ -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.16.3'
implementation 'com.uber.rib:rib-android:0.16.3'
testImplementation 'com.uber.rib:rib-test:0.16.3'
annotationProcessor 'com.uber.rib:rib-compiler-test:0.16.4'
implementation 'com.uber.rib:rib-android:0.16.4'
testImplementation 'com.uber.rib:rib-test:0.16.4'
}
```
There are a number of extension packages available as well including Kotlin extensions, Jetpack Compose support, Coroutines support
+1 -1
View File
@@ -13,7 +13,7 @@
# org.gradle.parallel=true
GROUP=com.uber.rib
VERSION_NAME=0.16.4-SNAPSHOT
VERSION_NAME=0.16.4
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/
+1 -1
View File
@@ -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.16.3'
implementation 'com.uber.rib:rib-coroutines-test:0.16.4'
}
```
+1 -1
View File
@@ -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.16.3'
implementation 'com.uber.rib:rib-coroutines:0.16.4'
}
```