From 8415d129f053a41ea390a013cb3bf3ca171a31d4 Mon Sep 17 00:00:00 2001
From: Patrick Steiger <psteiger@gmail.com>
Date: Tue, 17 Oct 2023 14:19:03 -0300
Subject: [PATCH 1/2] Prepare for release 0.16.0

---
 CHANGELOG.md                                    | 4 ++++
 README.md                                       | 6 +++---
 android/gradle.properties                       | 2 +-
 android/libraries/rib-coroutines-test/README.md | 2 +-
 android/libraries/rib-coroutines/README.md      | 2 +-
 5 files changed, 10 insertions(+), 6 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index a93ea3359..ae5799f15 100755
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
+
diff --git a/README.md b/README.md
index a3cb11f2e..8acb601c2 100644
--- a/README.md
+++ b/README.md
@@ -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
diff --git a/android/gradle.properties b/android/gradle.properties
index 732fb3a8b..01218ae55 100644
--- a/android/gradle.properties
+++ b/android/gradle.properties
@@ -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/
diff --git a/android/libraries/rib-coroutines-test/README.md b/android/libraries/rib-coroutines-test/README.md
index 83dd721c7..cc4ff24af 100644
--- a/android/libraries/rib-coroutines-test/README.md
+++ b/android/libraries/rib-coroutines-test/README.md
@@ -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'
 }
 ```
 
diff --git a/android/libraries/rib-coroutines/README.md b/android/libraries/rib-coroutines/README.md
index c1096e9f8..51de9bb3d 100644
--- a/android/libraries/rib-coroutines/README.md
+++ b/android/libraries/rib-coroutines/README.md
@@ -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'
 }
 ```
 

From 37a57268dd4d6348684357a797f14c0b07627985 Mon Sep 17 00:00:00 2001
From: Patrick Steiger <psteiger@gmail.com>
Date: Tue, 17 Oct 2023 14:25:44 -0300
Subject: [PATCH 2/2] Prepare next development version

---
 android/gradle.properties | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/android/gradle.properties b/android/gradle.properties
index 01218ae55..419ba1ff1 100644
--- a/android/gradle.properties
+++ b/android/gradle.properties
@@ -13,7 +13,7 @@
 # org.gradle.parallel=true
 
 GROUP=com.uber.rib
-VERSION_NAME=0.16.0
+VERSION_NAME=0.16.1-SNAPSHOT
 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/