From 2edb506ac183f613765bf85fa032adfbe386919e Mon Sep 17 00:00:00 2001 From: Austin Longino Date: Mon, 12 Sep 2016 16:48:35 -0700 Subject: [PATCH 1/2] Update CHANGELOG.md to 1.4.1 --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index dd4e7833..4e11da89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ Change Log ========== +## Version 1.4.1 +_2016_09_13_ + + * Fix #432 Have DefaultDatabaseProvider return filename + + v1.4.0 exposed a long standing bug relating to loading databases. + + ## Version 1.4.0 _2016_09_07_ From 95c6bce23e597562eedb191fb3ac9b07453cff31 Mon Sep 17 00:00:00 2001 From: Austin Longino Date: Mon, 12 Sep 2016 16:50:35 -0700 Subject: [PATCH 2/2] Bump to version 1.4.1 --- 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 18718262..fbf81667 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.4.0' +compile 'com.facebook.stetho:stetho:1.4.1' ``` or Maven: ```xml com.facebook.stetho stetho - 1.4.0 + 1.4.1 ``` 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.4.0' +compile 'com.facebook.stetho:stetho-okhttp3:1.4.1' ``` or: ```groovy -compile 'com.facebook.stetho:stetho-urlconnection:1.4.0' +compile 'com.facebook.stetho:stetho-urlconnection:1.4.1' ``` You can also enable a JavaScript console with: ```groovy -compile 'com.facebook.stetho:stetho-js-rhino:1.4.0' +compile 'com.facebook.stetho:stetho-js-rhino:1.4.1' ``` 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 97a0a869..8a7693ae 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ -VERSION_NAME=1.4.1-SNAPSHOT +VERSION_NAME=1.4.1 GROUP=com.facebook.stetho diff --git a/stetho-js-rhino/README.md b/stetho-js-rhino/README.md index f35ddf7c..62a81fad 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.4.0' +compile 'com.facebook.stetho:stetho-js-rhino:1.4.1' ``` or Maven: ```xml com.facebook.stetho stetho-js-rhino - 1.4.0 + 1.4.1 ```