mirror of
https://github.com/uber/RIBs.git
synced 2026-05-17 12:50:36 +00:00
Prepare for release 0.16.4
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
@@ -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
@@ -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/
|
||||
|
||||
@@ -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'
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
@@ -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'
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user