From 4aaf9d649198ffac4505832486e2bdb9069afb56 Mon Sep 17 00:00:00 2001 From: squidfunk <martin.donath@squidfunk.com> Date: Wed, 21 Jun 2017 11:16:54 +0200 Subject: [PATCH] Prepare 1.7.4 release --- CHANGELOG | 5 +++++ docs/release-notes.md | 9 ++++++++- material/base.html | 2 +- package.json | 5 +---- 4 files changed, 15 insertions(+), 6 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 49de221f..2da0cabd 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,8 @@ +mkdocs-material-1.7.4 (2017-06-21) + + * Fixed functional link colors in table of contents for active palette + * Fixed compatibility issues with IE11 + mkdocs-material-1.7.3 (2017-06-07) * Fixed error when setting language to Japanese for site search diff --git a/docs/release-notes.md b/docs/release-notes.md index 40ce4bde..8f4eccbc 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -12,11 +12,18 @@ To determine the currently installed version, use the following command: ``` sh pip show mkdocs-material | grep -E ^Version -# Version 1.7.3 +# Version 1.7.4 ``` ## Changelog +### 1.7.4 <small> _ June 21, 2017</small> + +* Fixed functional link colors in table of contents for active palette +* Fixed [#368][368] compatibility issues with IE11 + + [368]: https://github.com/squidfunk/mkdocs-material/issues/368 + ### 1.7.3 <small> _ June 7, 2017</small> * Fixed error when setting language to Japanese for site search diff --git a/material/base.html b/material/base.html index 1efd0172..be1edbdd 100644 --- a/material/base.html +++ b/material/base.html @@ -24,7 +24,7 @@ {% else %} <link rel="shortcut icon" href="{{ base_url }}/assets/images/favicon.png"> {% endif %} - <meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-1.7.3"> + <meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-1.7.4"> {% endblock %} {% block htmltitle %} {% if page and page.meta.title %} diff --git a/package.json b/package.json index 11e8c1f2..645f07ff 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mkdocs-material", - "version": "1.7.3", + "version": "1.7.4", "description": "A Material Design theme for MkDocs", "keywords": [ "mkdocs", @@ -29,9 +29,6 @@ "help": "scripts/help", "lint": "scripts/lint", "start": "scripts/start", - "test:visual:run": "scripts/test/visual/run", - "test:visual:update": "scripts/test/visual/update", - "test:visual:session": "scripts/test/visual/session", "travis": "scripts/travis" }, "dependencies": {}, -- GitLab