From 5593f99c14e985bfcbc872431fbb518b34adb7e7 Mon Sep 17 00:00:00 2001
From: squidfunk <scifish@gmail.com>
Date: Sat, 14 Jan 2017 20:22:09 +0100
Subject: [PATCH] Prepare 1.0.1 release

---
 CHANGELOG             | 7 +++++++
 docs/release-notes.md | 7 +++++++
 material/base.html    | 2 +-
 package.json          | 2 +-
 setup.py              | 2 +-
 5 files changed, 17 insertions(+), 3 deletions(-)

diff --git a/CHANGELOG b/CHANGELOG
index bc7774d1..cd1fe49b 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,10 @@
+mkdocs-material-1.0.1 (2017-01-14)
+
+  * Fixed massive repaints happening when scrolling
+  * Fixed footer back reference positions in case of overflow
+  * Fixed header logo from showing when the menu icon is rendered
+  * Changed scrollbar behavior to only show when content overflows
+
 mkdocs-material-1.0.0 (2017-01-13)
 
   * Introduced Webpack for more sophisticated JavaScript bundling
diff --git a/docs/release-notes.md b/docs/release-notes.md
index acd4e23d..24b0a81e 100644
--- a/docs/release-notes.md
+++ b/docs/release-notes.md
@@ -17,6 +17,13 @@ pip show mkdocs-material | grep -E ^Version
 
 ## Changelog
 
+### 1.0.1 <small> _  January 14, 2017</small>
+
+* Fixed massive repaints happening when scrolling
+* Fixed footer back reference positions in case of overflow
+* Fixed header logo from showing when the menu icon is rendered
+* Changed scrollbar behavior to only show when content overflows
+
 ### 1.0.0 <small> _  January 13, 2017</small>
 
 * Introduced Webpack for more sophisticated JavaScript bundling
diff --git a/material/base.html b/material/base.html
index 95d09870..b0cd52dc 100644
--- a/material/base.html
+++ b/material/base.html
@@ -19,7 +19,7 @@
       {% else %}
         <link rel="shortcut icon" href="{{ base_url }}/assets/images/favicon.ico">
       {% endif %}
-      <meta name="generator" content="mkdocs+mkdocs-material#1.0.0">
+      <meta name="generator" content="mkdocs+mkdocs-material#1.0.1">
     {% endblock %}
     {% block htmltitle %}
       {% if page.title %}
diff --git a/package.json b/package.json
index 0bd7876a..ffa58121 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "mkdocs-material",
-  "version": "1.0.0",
+  "version": "1.0.1",
   "description": "A Material Design theme for MkDocs",
   "keywords": [
     "mkdocs",
diff --git a/setup.py b/setup.py
index ca6a66f5..47efa3f7 100644
--- a/setup.py
+++ b/setup.py
@@ -23,7 +23,7 @@ from setuptools import setup, find_packages
 # Package description
 setup(
     name = "mkdocs-material",
-    version = "1.0.0",
+    version = "1.0.1",
     url = "http://squidfunk.github.io/mkdocs-material/",
     license = "MIT",
     description = "A Material Design theme for MkDocs",
-- 
GitLab