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_ 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