Skip to content

Commit

Permalink
Prepare for release 0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tyvsmith committed Jun 23, 2023
1 parent c1cf74c commit 5027731
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 7 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,18 @@
* [Android] Open lifecycleFlow, thus enabling it for mocking
* [Android] [WorkerBinder] Guard against potential Worker.coroutineContext being null while using Mockito

### Version 0.14.2i
### Version 0.14.2
* [Android] Fix potential for deadlocks in `Worker` binding. by @psteiger in https://github.com/uber/RIBs/pull/582
* [Android] Add Rib Worker demo app by @FranAguilera in https://github.com/uber/RIBs/pull/575

### Version 0.15.0
* Only complete the worker's scope after calling `Worker.onStop` by @psteiger in https://github.com/uber/RIBs/pull/585
* Improve KDoc on `ActivityLifecycleEvent` by explaining ordering semantics. by @psteiger in https://github.com/uber/RIBs/pull/586
* Make use of `jvmToolchain` for building the project. by @psteiger in https://github.com/uber/RIBs/pull/583
* Revamp Gradle scripts by @psteiger in https://github.com/uber/RIBs/pull/588
* Deprecate old worker by @FranAguilera in https://github.com/uber/RIBs/pull/597
* Allow overriding default CoroutineDispatcher for WorkerBinder calls by @FranAguilera in https://github.com/uber/RIBs/pull/596
* Update README.md by @FranAguilera in https://github.com/uber/RIBs/pull/600
* Deprecate WorkerUnbinder by @FranAguilera in https://github.com/uber/RIBs/pull/601
* Expose ribActionEvents stream by @FranAguilera in https://github.com/uber/RIBs/pull/599

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

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

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

Expand Down

0 comments on commit 5027731

Please sign in to comment.