From 8bf2368892d5148da2e072b8fe55b91c1b1a755b Mon Sep 17 00:00:00 2001
From: squidfunk <martin.donath@squidfunk.com>
Date: Sun, 26 Feb 2017 15:40:21 +0100
Subject: [PATCH] Prepare 1.1.0 release

---
 CHANGELOG             |  4 ++--
 docs/release-notes.md | 20 +++++++++++++++++++-
 material/base.html    |  2 +-
 package.json          |  2 +-
 4 files changed, 23 insertions(+), 5 deletions(-)

diff --git a/CHANGELOG b/CHANGELOG
index 6e13b7aa..5416c545 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,11 +1,11 @@
-mkdocs-material-1.1.0 (2017-xx-xx)
+mkdocs-material-1.1.0 (2017-02-26)
 
   * Added tabs navigation feature (optional)
   * Added Disqus integration (optional)
   * Added a high resolution Favicon with the new logo
   * Added static type checking using Facebook's Flow
-  * Fixed #175: Tables cannot be set to 100% width
   * Fixed #173: Dictionary elements have no bottom spacing
+  * Fixed #175: Tables cannot be set to 100% width
   * Fixed race conditions in build related to asset revisioning
   * Fixed accidentally re-introduced Permalink on top-level headline
   * Fixed alignment of logo in drawer on IE11
diff --git a/docs/release-notes.md b/docs/release-notes.md
index 8157cdd9..0e8e8a43 100644
--- a/docs/release-notes.md
+++ b/docs/release-notes.md
@@ -12,11 +12,29 @@ To determine the currently installed version, use the following command:
 
 ``` sh
 pip show mkdocs-material | grep -E ^Version
-# Version 1.0.4
+# Version 1.1.0
 ```
 
 ## Changelog
 
+### 1.1.0 <small> _ February 26, 2017</small>
+
+* Added tabs navigation feature (optional)
+* Added Disqus integration (optional)
+* Added a high resolution Favicon with the new logo
+* Added static type checking using Facebook's Flow
+* Fixed [#173][173]: Dictionary elements have no bottom spacing
+* Fixed [#175][175]: Tables cannot be set to 100% width
+* Fixed race conditions in build related to asset revisioning
+* Fixed accidentally re-introduced Permalink on top-level headline
+* Fixed alignment of logo in drawer on IE11
+* Refactored styles related to tables
+* Refactored and automated Docker build and PyPI release
+* Refactored build scripts
+
+  [173]: https://github.com/squidfunk/mkdocs-material/issues/173
+  [175]: https://github.com/squidfunk/mkdocs-material/issues/175
+
 ### 1.0.5 <small> _ February 18, 2017</small>
 
 * Fixed [#153][153]: Sidebar flows out of constrained area in Chrome 56
diff --git a/material/base.html b/material/base.html
index 585cdfb7..9ac623be 100644
--- a/material/base.html
+++ b/material/base.html
@@ -19,7 +19,7 @@
       {% else %}
         <link rel="shortcut icon" href="{{ base_url }}/assets/images/favicon.png">
       {% endif %}
-      <meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-1.0.5">
+      <meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-1.1.0">
     {% endblock %}
     {% block htmltitle %}
       {% if page.title and not page.is_homepage %}
diff --git a/package.json b/package.json
index 843c923c..79f35daa 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "mkdocs-material",
-  "version": "1.0.5",
+  "version": "1.1.0",
   "description": "A Material Design theme for MkDocs",
   "keywords": [
     "mkdocs",
-- 
GitLab