diff --git a/_deploy b/_deploy
index 872bf48dd01..1e8bb05106a 160000
--- a/_deploy
+++ b/_deploy
@@ -1 +1 @@
-Subproject commit 872bf48dd019a9c8f692d60d60b30fe5ee2d1907
+Subproject commit 1e8bb05106a8f8e67f1d5d2f58f589b2cf0fd6cc
diff --git a/source/_posts/2015-08-17-verisure-and-modern-tp-link-router-support.markdown b/source/_posts/2015-08-17-verisure-and-modern-tp-link-router-support.markdown
new file mode 100644
index 00000000000..983d48d3370
--- /dev/null
+++ b/source/_posts/2015-08-17-verisure-and-modern-tp-link-router-support.markdown
@@ -0,0 +1,33 @@
+---
+layout: post
+title: "Verisure devices and modern TP-Link routers now supported"
+description: "New support for Verisure switches, sensors and hygrometers and modern TP-Link routers"
+date: 2015-08-17 20:00 -0700
+date_formatted: "August 17, 2015"
+comments: true
+categories: release-notes
+---
+
+A minor bug fix release to fix some issues that have come up since the last release. Please upgrade as soon as possible by running `git pull` from the Home Assistant directory.
+
+This release is a major milestone in our test coverage as we've crossed into the 80s! It has to be noted that this covers mainly the core and automation components. Platforms that communicate with IoT devices have been excluded.
+
+As we didn't want to just push out bug fixes, this release includes a few additions:
+
+ - Support for modern TP-Link routers like the ArcherC9 line has been contributed by [@chrisvis](https://github.com/chrisvis).
+ - Improved support for MQTT topic subscriptions has been contributed by [@qrtn](https://github.com/qrtn)
+
+__Verisure Support__
+
+Home Assistant support to integrate your [Verisure](https://www.verisure.com/) alarms, hygrometers, sensors and thermometers has been contributed by [@persandstrom](https://github.com/persandstrom).
+
+```yaml
+# Example configuration.yaml entry
+verisure:
+ username: user@example.com
+ password: password
+ alarm: 1
+ hygrometers: 0
+ smartplugs: 1
+ thermometers: 0
+```
diff --git a/source/components/index.markdown b/source/components/index.markdown
index a07d10a83b7..6ee4d4426eb 100644
--- a/source/components/index.markdown
+++ b/source/components/index.markdown
@@ -233,8 +233,10 @@ Home Assistant integrates with a variety of third party Home Automation hubs and
[
](/components/vera.html)
[
](/components/wink.html)
[
](/components/isy994.html)
+
[
](/components/modbus.html)
[
](/components/arduino.html)
+[
](/components/verisure.html)
Support for these devices is provided by the Home Assistant community and not
diff --git a/source/components/verisure.markdown b/source/components/verisure.markdown
new file mode 100644
index 00000000000..633329cfd12
--- /dev/null
+++ b/source/components/verisure.markdown
@@ -0,0 +1,27 @@
+---
+layout: page
+title: "Verisure"
+description: "Instructions how to setup Verisure devices within Home Assistant."
+date: 2015-08-17 20:28
+sidebar: false
+comments: false
+sharing: true
+footer: true
+---
+
+
+
+Home Assistant has support to integrate your [Verisure](https://www.verisure.com/) devices. We support hygrometers, smartplugs and thermometers.
+
+Username and password are required. Other variables are optional and allow you to disable certain devices.
+
+```yaml
+# Example configuration.yaml entry
+verisure:
+ username: user@example.com
+ password: password
+ alarm: 1
+ hygrometers: 0
+ smartplugs: 1
+ thermometers: 0
+```
diff --git a/source/images/supported_brands/nest_thermostat.png b/source/images/supported_brands/nest_thermostat.png
index 8ce871f6bee..8b1b8ff443f 100644
Binary files a/source/images/supported_brands/nest_thermostat.png and b/source/images/supported_brands/nest_thermostat.png differ
diff --git a/source/images/supported_brands/transmission.png b/source/images/supported_brands/transmission.png
index 06072273350..7981018ede9 100644
Binary files a/source/images/supported_brands/transmission.png and b/source/images/supported_brands/transmission.png differ
diff --git a/source/images/supported_brands/verisure.png b/source/images/supported_brands/verisure.png
new file mode 100644
index 00000000000..017faf31c41
Binary files /dev/null and b/source/images/supported_brands/verisure.png differ