Skip to content

Commit c9b4c01

Browse files
committed
Prepare for release 0.16.1
1 parent 14d1822 commit c9b4c01

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,3 +123,6 @@
123123
* Get rid of suppressions for "invisible_reference" and "invisible_member" by @psteiger in https://github.com/uber/RIBs/pull/618
124124
* Introduce `TestScope.test(RibCoroutineWorker)` test helper utility. by @psteiger in https://github.com/uber/RIBs/pull/620
125125

126+
### Version 0.16.1
127+
* [Android] Remove duplicate method by @jbarr in https://github.com/uber/RIBs/pull/621
128+

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ To integrate the recommended minimum setup for RIBs add the following to your `b
4949

5050
```gradle
5151
dependencies {
52-
annotationProcessor 'com.uber.rib:rib-compiler-test:0.16.0'
53-
implementation 'com.uber.rib:rib-android:0.16.0'
54-
testImplementation 'com.uber.rib:rib-test:0.16.0'
52+
annotationProcessor 'com.uber.rib:rib-compiler-test:0.16.1'
53+
implementation 'com.uber.rib:rib-android:0.16.1'
54+
testImplementation 'com.uber.rib:rib-test:0.16.1'
5555
}
5656
```
5757
There are a number of extension packages available as well including Kotlin extensions, Jetpack Compose support, Coroutines support

android/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# org.gradle.parallel=true
1414

1515
GROUP=com.uber.rib
16-
VERSION_NAME=0.16.1-SNAPSHOT
16+
VERSION_NAME=0.16.1
1717
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.
1818
POM_URL=https://github.com/uber/RIBs/
1919
POM_SCM_URL=https://github.com/uber/RIBs/

android/libraries/rib-coroutines-test/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This module is responsible for defining the coroutines test utils for the rib-co
55
## Installation
66
```gradle
77
dependencies {
8-
implementation 'com.uber.rib:rib-coroutines-test:0.16.0'
8+
implementation 'com.uber.rib:rib-coroutines-test:0.16.1'
99
}
1010
```
1111

android/libraries/rib-coroutines/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This module is responsible for defining the coroutines extensions for the rib-ba
55
## Installation
66
```gradle
77
dependencies {
8-
implementation 'com.uber.rib:rib-coroutines:0.16.0'
8+
implementation 'com.uber.rib:rib-coroutines:0.16.1'
99
}
1010
```
1111

0 commit comments

Comments
 (0)