diff --git a/CHANGELOG.md b/CHANGELOG.md index 708534ea..8352013e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,24 @@ Change Log ========== +## Version 1.1.1 + +_2015-05-01_ + + * **Updated patent grant!** + See https://code.facebook.com/posts/1639473982937255/updating-our-open-source-patent-grant/ + + * New: `stetho-timber` added to redirect log messages to the Stetho console. + * Fix #140: More efficient and simpler Fragment accessor code. + * Fix #123: All view inspection features are now available for ICS (API 15) + and up (some features required JB MR2, API 18). + * Fix #154: Fix subtle race when a database is removed after the DevTools + UI is opened. + * Fix #151: Crash when rapidly adding/removing SharedPreferences keys. + * Fix #142: View inspection "hit testing" didn't work as intended with its + two-pass design. + * Fix: Ignore extraneous files when WAL is enabled for SQLite databases. + ## Version 1.1.0 _2015-04-02_ diff --git a/README.md b/README.md index 4568f3d2..34e48b23 100644 --- a/README.md +++ b/README.md @@ -15,25 +15,25 @@ begin. ### Download Download [the latest JARs](https://github.com/facebook/stetho/releases/latest) or grab via Gradle: ```groovy -compile 'com.facebook.stetho:stetho:1.1.0' +compile 'com.facebook.stetho:stetho:1.1.1' ``` or Maven: ```xml com.facebook.stetho stetho - 1.1.0 + 1.1.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-okhttp:1.1.0' +compile 'com.facebook.stetho:stetho-okhttp:1.1.1' ``` or: ```groovy -compile 'com.facebook.stetho:stetho-urlconnection:1.1.0' +compile 'com.facebook.stetho:stetho-urlconnection:1.1.1' ``` ### Putting it together