Prepare for release 0.16.5

This commit is contained in:
psteiger@gmail.com
2025-09-17 01:46:36 -04:00
parent efbdfe5734
commit e8999851b7
5 changed files with 11 additions and 6 deletions
+5
View File
@@ -146,3 +146,8 @@
* 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
### Version 0.16.5
* Remove unneeded deps
* Restore source compatibility for Interactor
* Add mavenCentral publishing by @psteiger in https://github.com/uber/RIBs/pull/655
+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.4'
implementation 'com.uber.rib:rib-android:0.16.4'
testImplementation 'com.uber.rib:rib-test:0.16.4'
annotationProcessor 'com.uber.rib:rib-compiler-test:0.16.5'
implementation 'com.uber.rib:rib-android:0.16.5'
testImplementation 'com.uber.rib:rib-test:0.16.5'
}
```
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.5-SNAPSHOT
VERSION_NAME=0.16.5
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.4'
implementation 'com.uber.rib:rib-coroutines-test:0.16.5'
}
```
+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.4'
implementation 'com.uber.rib:rib-coroutines:0.16.5'
}
```