From 1b22bc286f4cc8b0195e133ab5cf9368130b2ecf Mon Sep 17 00:00:00 2001 From: Mykola Dzyuba <7852483+mdzyuba@users.noreply.github.com> Date: Wed, 17 Mar 2021 00:19:07 -0700 Subject: [PATCH 1/2] Update CHANGELOG.md to v1.6.0 --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d76f52a3..93a485cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ Change Log ========== +## Version 1.6.0 +_2021-03-17_ + + * Fix #662/665: AndroidX upgrade. + ## Version 1.5.1 _2019-03-17_ From 1d7ec5a6baee64c050832e292dc82a1d01db4063 Mon Sep 17 00:00:00 2001 From: Mykola Dzyuba <7852483+mdzyuba@users.noreply.github.com> Date: Wed, 17 Mar 2021 00:23:53 -0700 Subject: [PATCH 2/2] Bump version to 1.6.0 --- README.md | 10 +++++----- gradle.properties | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index c9d5f00f..87dcd72d 100644 --- a/README.md +++ b/README.md @@ -15,31 +15,31 @@ begin. ### Download Download [the latest JARs](https://github.com/facebook/stetho/releases/latest) or grab via Gradle: ```groovy -implementation 'com.facebook.stetho:stetho:1.5.1' +implementation 'com.facebook.stetho:stetho:1.6.0' ``` or Maven: ```xml com.facebook.stetho stetho - 1.5.1 + 1.6.0 ``` Only the main `stetho` dependency is strictly required; however, you may also wish to use one of the network helpers: ```groovy -implementation 'com.facebook.stetho:stetho-okhttp3:1.5.1' +implementation 'com.facebook.stetho:stetho-okhttp3:1.6.0' ``` or: ```groovy -implementation 'com.facebook.stetho:stetho-urlconnection:1.5.1' +implementation 'com.facebook.stetho:stetho-urlconnection:1.6.0' ``` You can also enable a JavaScript console with: ```groovy -implementation 'com.facebook.stetho:stetho-js-rhino:1.5.1' +implementation 'com.facebook.stetho:stetho-js-rhino:1.6.0' ``` For more details on how to customize the JavaScript runtime see [stetho-js-rhino](stetho-js-rhino/). diff --git a/gradle.properties b/gradle.properties index 3b2812e5..7b9319b9 100644 --- a/gradle.properties +++ b/gradle.properties @@ -18,5 +18,5 @@ org.gradle.jvmargs=-Xmx1536m android.useAndroidX=true -VERSION_NAME=1.6.0-SNAPSHOT +VERSION_NAME=1.6.0 GROUP=com.facebook.stetho