From fb4a97301663b96096e87c8788c74bb6df153f56 Mon Sep 17 00:00:00 2001 From: Austin Longino Date: Wed, 7 Sep 2016 14:23:34 -0700 Subject: [PATCH 1/2] Update CHANGELOG.md to 1.4.0 --- CHANGELOG.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 34a1a291..6ef149d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ Change Log ========== +## Version 1.4.0 +_2016_09_07 + + * **Add UI Accessibility Properties to Styles tab** + Added support for accessibility inspection, which allows users to select + a View and see whether or not it will be focusable by an Accessibility + Service, why it will or won't be focusable, the text description sent to + Accessibility Services, and any AccessibilityActions that are currently + available on the View. + + * Fix #367: Fixed SqliteDatabaseDriver with custom DatabaseFilesProvider + * Fix #424: Make aar be the default packaging in maven + ## Version 1.3.1 _2016-02-25_ From 0639e1127dc800fe9a8c04c515cc8d24e3d3b54b Mon Sep 17 00:00:00 2001 From: Austin Longino Date: Wed, 7 Sep 2016 14:27:56 -0700 Subject: [PATCH 2/2] Bump to version 1.4.0 --- README.md | 10 +++++----- gradle.properties | 2 +- stetho-js-rhino/README.md | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 081fac43..923be4c8 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 -compile 'com.facebook.stetho:stetho:1.3.1' +compile 'com.facebook.stetho:stetho:1.4.0' ``` or Maven: ```xml com.facebook.stetho stetho - 1.3.1 + 1.4.0 ``` Only the main `stetho` dependency is strictly required; however, you may also wish to use one of the network helpers: ```groovy -compile 'com.facebook.stetho:stetho-okhttp3:1.3.1' +compile 'com.facebook.stetho:stetho-okhttp3:1.4.0' ``` or: ```groovy -compile 'com.facebook.stetho:stetho-urlconnection:1.3.1' +compile 'com.facebook.stetho:stetho-urlconnection:1.4.0' ``` You can also enable a JavaScript console with: ```groovy -compile 'com.facebook.stetho:stetho-js-rhino:1.3.1' +compile 'com.facebook.stetho:stetho-js-rhino:1.4.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 f6ee384f..b32f9964 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ -VERSION_NAME=1.3.2-SNAPSHOT +VERSION_NAME=1.4.0 GROUP=com.facebook.stetho diff --git a/stetho-js-rhino/README.md b/stetho-js-rhino/README.md index d10ba85d..f35ddf7c 100644 --- a/stetho-js-rhino/README.md +++ b/stetho-js-rhino/README.md @@ -7,14 +7,14 @@ This [Stetho](https://facebook.github.io/stetho) plugin adds a JavaScript consol ### Download Download [the latest JARs](https://github.com/facebook/stetho/releases/latest) or grab via Gradle: ```groovy -compile 'com.facebook.stetho:stetho-js-rhino:1.3.1' +compile 'com.facebook.stetho:stetho-js-rhino:1.4.0' ``` or Maven: ```xml com.facebook.stetho stetho-js-rhino - 1.3.1 + 1.4.0 ```