diff --git a/CHANGELOG b/CHANGELOG index bc7774d1e..cd1fe49b0 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 acd4e23db..24b0a81e2 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 _ January 14, 2017 + +* 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 _ January 13, 2017 * Introduced Webpack for more sophisticated JavaScript bundling diff --git a/material/base.html b/material/base.html index 95d098709..b0cd52dc6 100644 --- a/material/base.html +++ b/material/base.html @@ -19,7 +19,7 @@ {% else %} {% endif %} - + {% endblock %} {% block htmltitle %} {% if page.title %} diff --git a/package.json b/package.json index 0bd7876a6..ffa581213 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 ca6a66f58..47efa3f7c 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",