From 2d66c7ed22f67ac1ff61a5b588ca10ff48cdca72 Mon Sep 17 00:00:00 2001
From: squidfunk <martin.donath@squidfunk.com>
Date: Mon, 15 May 2017 11:40:26 +0200
Subject: [PATCH] Prepare 1.6.2 release

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

diff --git a/CHANGELOG b/CHANGELOG
index ff454ede..f876b798 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,11 @@
+mkdocs-material-1.6.2 (2017-05-15)
+
+  * Fixed #316: Fatal error for git clone on Windows
+  * Fixed #320: Chrome 58 creates double underline for abbr tags
+  * Fixed #323: Ligatures rendered inside code blocks
+  * Fixed miscalculated sidebar height due to missing margin collapse
+  * Changed deprecated MathJax CDN to Cloudflare
+
 mkdocs-material-1.6.1 (2017-04-23)
 
   * Fixed following of active/focused element if search input is focused
@@ -8,7 +16,7 @@ mkdocs-material-1.6.0 (2017-04-22)
   * Added build test for Docker image on Travis
   * Added search overlay for better user experience (focus)
   * Added language from localizations to html tag
-  * Fixed #270: source links broken for absolute URLs
+  * Fixed #270: Source links broken for absolute URLs
   * Fixed missing top spacing for first targeted element in content
   * Fixed too small footnote divider when using larger font sizes
 
diff --git a/docs/release-notes.md b/docs/release-notes.md
index dafddd5f..1bb5fd45 100644
--- a/docs/release-notes.md
+++ b/docs/release-notes.md
@@ -12,11 +12,21 @@ To determine the currently installed version, use the following command:
 
 ``` sh
 pip show mkdocs-material | grep -E ^Version
-# Version 1.6.1
+# Version 1.6.2
 ```
 
 ## Changelog
 
+* Fixed [#316][316]: Fatal error for git clone on Windows
+* Fixed [#320][320]: Chrome 58 creates double underline for `abbr` tags
+* Fixed [#323][323]: Ligatures rendered inside code blocks
+* Fixed miscalculated sidebar height due to missing margin collapse
+* Changed deprecated MathJax CDN to Cloudflare
+
+  [316]: https://github.com/squidfunk/mkdocs-material/issues/316
+  [320]: https://github.com/squidfunk/mkdocs-material/issues/320
+  [323]: https://github.com/squidfunk/mkdocs-material/issues/323
+
 ### 1.6.1 <small> _ April 23, 2017</small>
 
 * Fixed following of active/focused element if search input is focused
@@ -42,7 +52,7 @@ pip show mkdocs-material | grep -E ^Version
 ### 1.5.4 <small> _ April 8, 2017</small>
 
 * Fixed broken highlighting for two or more search terms
-* Fixed missing search results when only a h1 is present
+* Fixed missing search results when only a `h1` is present
 * Fixed unresponsive overlay on Android
 
 ### 1.5.3 <small> _ April 7, 2017</small>
diff --git a/material/base.html b/material/base.html
index 6d02a7fb..31bce557 100644
--- a/material/base.html
+++ b/material/base.html
@@ -23,7 +23,7 @@
       {% else %}
         <link rel="shortcut icon" href="{{ base_url }}/assets/images/favicon.png">
       {% endif %}
-      <meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-1.6.1">
+      <meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-1.6.2">
     {% endblock %}
     {% block htmltitle %}
       {% if page and page.meta.title %}
diff --git a/package.json b/package.json
index 7a010be2..6d8c0ba9 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "mkdocs-material",
-  "version": "1.6.1",
+  "version": "1.6.2",
   "description": "A Material Design theme for MkDocs",
   "keywords": [
     "mkdocs",
-- 
GitLab