diff --git a/CHANGELOG b/CHANGELOG
index 55f0a9e0537aad7d68c0e254ef758ade4cb5206a..abaf476422295575b8e750d62c0ff378138509b9 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,4 @@
-mkdocs-material-0.x.x (2016-xx-xx)
+mkdocs-material-0.1.3 (2016-02-21)
 
   * Fixed #3: Ordered lists within an unordered list have ::before content
   * Fixed #4: Click on Logo/Title without Github-Repository: "None"
diff --git a/bower.json b/bower.json
index 5e5fc5f7b2300bf369c8e5858fca1541b920d68a..1271a19cd6d5c0f6e6510cb4598f959c455b0c71 100644
--- a/bower.json
+++ b/bower.json
@@ -1,6 +1,6 @@
 {
   "name": "mkdocs-material",
-  "version": "0.1.2",
+  "version": "0.1.3",
   "description": "A material design theme for MkDocs",
   "homepage": "http://squidfunk.github.io/mkdocs-material/",
   "authors": [
diff --git a/docs/getting-started.md b/docs/getting-started.md
index 0a1a8c6ba684a62387cc6de393c7f4c6913b3915..09c14f9538bb8fe93c9ee15513de2f478a181235 100644
--- a/docs/getting-started.md
+++ b/docs/getting-started.md
@@ -202,10 +202,17 @@ This will print the following block:
     Nothing to see here, move along.
 
 The Material template adds a neutral color for the `note` class and a red color
-for the `warning` class.
+for the `warning` class. You can also add a custom title:
 
-!!! warning
-    You shall not pass.
+``` markdown
+!!! warning "Don't try this at home"
+    If you do, you will regret it.
+```
+
+This will print:
+
+!!! warning "Don't try this at home"
+    If you do, you will regret it.
 
 More colors can be freely defined.
 
diff --git a/mkdocs.yml b/mkdocs.yml
index ebc2ab6b05c0b475cd8c7720b7587656185acd57..5a1aeb6f36a8e336abe359189c7d978d44214f89 100755
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -36,7 +36,7 @@ theme_dir: material
 
 # Options
 extra:
-  version: 0.1.2
+  version: 0.1.3
   logo: images/logo.png
   font:
     text: Ubuntu
diff --git a/package.json b/package.json
index 90bd35f189c79f3295f9f19ffbc85c897741bffd..025d41b2c6a38c9e974f949037a3308c58f5966a 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "mkdocs-material",
-  "version": "0.1.2",
+  "version": "0.1.3",
   "description": "A material design theme for MkDocs",
   "homepage": "http://squidfunk.github.io/mkdocs-material/",
   "authors": [
diff --git a/setup.py b/setup.py
index ab2043347506c7dfe85c007b2c031fe3a0d53851..0b004c6443a4d68835d3b4746063cfe4cdbe2c7f 100644
--- a/setup.py
+++ b/setup.py
@@ -23,7 +23,7 @@ from setuptools import setup, find_packages
 # Package description
 setup(
     name = 'mkdocs-material',
-    version = '0.1.2',
+    version = '0.1.3',
     url = 'http://squidfunk.github.io/mkdocs-material/',
     license = 'MIT',
     description = 'A material design theme for MkDocs',