Skip to content

Commit 5835f8e

Browse files
committed
Prepare for release 0.15.1
1 parent 36d2c13 commit 5835f8e

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
@@ -103,3 +103,6 @@
103103
* Deprecate WorkerUnbinder by @FranAguilera in https://github.com/uber/RIBs/pull/601
104104
* Expose ribActionEvents stream by @FranAguilera in https://github.com/uber/RIBs/pull/599
105105

106+
### Version 0.15.1
107+
* [Android] Remove use of @JvmDefault in favor of using -Xjvm-default=all by @psteiger in https://github.com/uber/RIBs/pull/576
108+

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.15.0'
53-
implementation 'com.uber.rib:rib-android:0.15.0'
54-
testImplementation 'com.uber.rib:rib-test:0.15.0'
52+
annotationProcessor 'com.uber.rib:rib-compiler-test:0.15.1'
53+
implementation 'com.uber.rib:rib-android:0.15.1'
54+
testImplementation 'com.uber.rib:rib-test:0.15.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.15.1-SNAPSHOT
16+
VERSION_NAME=0.15.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.15.0'
8+
implementation 'com.uber.rib:rib-coroutines-test:0.15.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.15.0'
8+
implementation 'com.uber.rib:rib-coroutines:0.15.1'
99
}
1010
```
1111

0 commit comments

Comments
 (0)