Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.16.0 release commits. #623

Merged
merged 2 commits into from
Nov 4, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Prepare for release 0.16.0
psteiger committed Nov 3, 2023

Verified

This commit was signed with the committer’s verified signature.
commit 8415d129f053a41ea390a013cb3bf3ca171a31d4
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -119,3 +119,7 @@
### Version 0.15.4
* Set JvmVersion to 1.8

### Version 0.16.0
* Get rid of suppressions for "invisible_reference" and "invisible_member" by @psteiger in https://github.com/uber/RIBs/pull/618
* Introduce `TestScope.test(RibCoroutineWorker)` test helper utility. by @psteiger in https://github.com/uber/RIBs/pull/620

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.15.4'
implementation 'com.uber.rib:rib-android:0.15.4'
testImplementation 'com.uber.rib:rib-test:0.15.4'
annotationProcessor 'com.uber.rib:rib-compiler-test:0.16.0'
implementation 'com.uber.rib:rib-android:0.16.0'
testImplementation 'com.uber.rib:rib-test:0.16.0'
}
```
There are a number of extension packages available as well including Kotlin extensions, Jetpack Compose support, Coroutines support
2 changes: 1 addition & 1 deletion android/gradle.properties
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@
# org.gradle.parallel=true

GROUP=com.uber.rib
VERSION_NAME=0.15.5-SNAPSHOT
VERSION_NAME=0.16.0
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/
2 changes: 1 addition & 1 deletion android/libraries/rib-coroutines-test/README.md
Original file line number Diff line number Diff line change
@@ -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.15.4'
implementation 'com.uber.rib:rib-coroutines-test:0.16.0'
}
```

2 changes: 1 addition & 1 deletion android/libraries/rib-coroutines/README.md
Original file line number Diff line number Diff line change
@@ -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.15.4'
implementation 'com.uber.rib:rib-coroutines:0.16.0'
}
```