Skip to content

Commit

Permalink
Merge branch 'release-1.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Guilfoyle committed Feb 27, 2015
2 parents d1e2a0e + 060767b commit 4350886
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 5 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
Change Log
==========

## Version 1.0.1

_2015-02-27_

* **`SharedPreferences` inspection.**
It's now possible to inspect SharedPreference files from the "Resources"
tab.

* New #65: Show non-default process name to chrome://inspect UI.
* Fix #57: HTTP responses without the Content-Type header do not appear in the
DevTools UI.
* Fix #49: Unconditional "Could not bind to socket" error.
* Fix #37: Duplicate dumpapp endpoints for the same process.
* Fix: Use raw process name for Stetho sockets to fix an issue formatting
choices in `dumpapp`

## Version 1.0.0

_2015-02-18_

* Initial release.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,25 +39,25 @@ easily create your own!
### Download
Download [the latest JARs](https://github.com/facebook/stetho/releases/latest) or grab via Gradle:
```groovy
compile 'com.facebook.stetho:stetho:1.0.0'
compile 'com.facebook.stetho:stetho:1.0.1'
```
or Maven:
```xml
<dependency>
<groupId>com.facebook.stetho</groupId>
<artifactId>stetho</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</dependency>
```

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.0.0'
compile 'com.facebook.stetho:stetho-okhttp:1.0.1'
```
or:
```groovy
compile 'com.facebook.stetho:stetho-urlconnection:1.0.0'
compile 'com.facebook.stetho:stetho-urlconnection:1.0.1'
```

### Set-up
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VERSION_NAME=1.0.1-SNAPSHOT
VERSION_NAME=1.0.1
GROUP=com.facebook.stetho

0 comments on commit 4350886

Please sign in to comment.