diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8352013e..7d21bf5c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,42 @@
Change Log
==========
+## Version 1.2.0
+
+_2015-09-11_
+
+ * **View properties support!**
+ The "Styles" and "Computed" sub-tabs in "Elements" are now implemented,
+ complete with the box model diagram and a summary of the most useful view
+ properties.
+
+ * **Screencasting**
+ Click the small screen icon in the upper right to view a live preview of
+ your phone's screen while using Stetho! Coming soon: mouse/keyboard
+ support.
+
+ * **Console tab support**
+ Arbitrary Java/JavaScript support added to the Console with the optional
+ `stetho-js-rhino` dependency. See
+ [`stetho-sample/build.gradle`](stetho-sample/build.gradle) for details.
+
+ * **New simpler initialization and customization API**
+ Most callers can now just use `Stetho.initializeWithDefaults(context)`.
+
+ * New #218: Ability to pass pretty printers for binary data in the Network tab.
+ * New #248: Implement transparent request decompression.
+ * New #225: Ability to search View hierarchy (invoke with CTRL+F on the Elements tab).
+ * New #238: Add EXPLAIN support in SQL console.
+ * New #222: Add PRAGMA support in SQL console.
+ * New #207: Add `dumpapp files` plugin.
+ * New #181: Highlight view margins and padding when hovering over DOM entry.
+ * New #211: Implement DialogFragment in Elements tab.
+ * Fix #231: Sort database and shared preferences entries by name.
+ * Fix #206: Fix small memory leak in View hierarchy support.
+ * Fix #204: Use DOM tree diffing to fix ListView and a number of other edge
+ case view hierarchies.
+ * Fix #183: Fix Fragment support in Elements tab.
+
## Version 1.1.1
_2015-05-01_
diff --git a/README.md b/README.md
index 19521449..0b0d210d 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.1.1'
+compile 'com.facebook.stetho:stetho:1.2.0'
```
or Maven:
```xml
com.facebook.stetho
stetho
- 1.1.1
+ 1.2.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-okhttp:1.1.1'
+compile 'com.facebook.stetho:stetho-okhttp:1.2.0'
```
or:
```groovy
-compile 'com.facebook.stetho:stetho-urlconnection:1.1.1'
+compile 'com.facebook.stetho:stetho-urlconnection:1.2.0'
```
You can also enable a JavaScript console with:
```groovy
-compile 'com.facebook.stetho:stetho-js-rhino:1.1.1'
+compile 'com.facebook.stetho:stetho-js-rhino:1.2.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 6f6488cd..7b52df59 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,2 +1,2 @@
-VERSION_NAME=1.2.0-SNAPSHOT
+VERSION_NAME=1.2.0
GROUP=com.facebook.stetho
diff --git a/stetho-js-rhino/README.md b/stetho-js-rhino/README.md
index b1952034..3b39dd41 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.1.1'
+compile 'com.facebook.stetho:stetho-js-rhino:1.2.0'
```
or Maven:
```xml
com.facebook.stetho
stetho-js-rhino
- 1.1.1
+ 1.2.0
```