diff --git a/CHANGELOG b/CHANGELOG
index 49de221f97acdf204b1f8ed38e1c1580e1991175..2da0cabd15b805e5e911fc8563876727d2752178 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 40ce4bde9c2f3a3dbe43b55297a4af94a71f5105..8f4eccbcaad47527acecf57cb490439b22773dec 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 1efd0172a1ee66c5db699b009661c173adfb4442..be1edbddca2ec93183bf0036ea0f6fc01e51e612 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 11e8c1f24b5f4a91eb1ef3172a712a568c4b7850..645f07ff3f3ccd916d44a07e02e706b4a60a32fc 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": {},