diff --git a/CHANGELOG b/CHANGELOG
index cdd79723f515e4f1a8d14ad61bd3e1c9ca87e210..cc8e1d4080c68d60cc92773d34ebd2ad9b9b4532 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,15 +1,16 @@
-mkdocs-material-1.x.x (2017-xx-xx)
+mkdocs-material-1.3.0 (2017-11-03)
 
-  * Added possibility for non-fixed (static) header
   * Added support for page-specific title and description using metadata
-  * Added support for the linking of source files to pages
+  * Added support for linking source files to documentation
   * Fixed jitter and offset of sidebar when zooming browser
   * Fixed incorrectly initialized tablet sidebar height
   * Fixed regression for #1: GitHub stars break if the repo_url ends with a '/'
   * Fixed undesired white line below copyright footer due to base font scaling
   * Fixed issue with whitespace in path for scripts
+  * Fixed #205: support non-fixed (static) header
+  * Refactored footnote references for better visibility
   * Reduced repaints to a minimum for non-tabs configuration
-  * Slightly reduced contrast of edit button
+  * Reduced contrast of edit button (slightly)
 
 mkdocs-material-1.2.0 (2017-03-03)
 
diff --git a/docs/release-notes.md b/docs/release-notes.md
index 96aded85a15e5dff47db53113832c9dd6e73d9ba..1527c039db2152c1357fa3154eeb56364a4f3275 100644
--- a/docs/release-notes.md
+++ b/docs/release-notes.md
@@ -12,11 +12,27 @@ To determine the currently installed version, use the following command:
 
 ``` sh
 pip show mkdocs-material | grep -E ^Version
-# Version 1.2.0
+# Version 1.3.0
 ```
 
 ## Changelog
 
+### 1.3.0 <small> _ March 11, 2017</small>
+
+* Added support for page-specific title and description using metadata
+* Added support for linking source files to documentation
+* Fixed jitter and offset of sidebar when zooming browser
+* Fixed incorrectly initialized tablet sidebar height
+* Fixed regression for [#1][1]: GitHub stars break if repo_url ends with a `/`
+* Fixed undesired white line below copyright footer due to base font scaling
+* Fixed issue with whitespace in path for scripts
+* Fixed [#205][205]: support non-fixed (static) header
+* Refactored footnote references for better visibility
+* Reduced repaints to a minimum for non-tabs configuration
+* Reduced contrast of edit button (slightly)
+
+  [205]: https://github.com/squidfunk/mkdocs-material/issues/197
+
 ### 1.2.0 <small> _ March 3, 2017</small>
 
 * Added `quote` (synonym: `cite`) style for Admonition
diff --git a/material/base.html b/material/base.html
index 1c0867032e68e0da30ca63f2c8394f665bfa68eb..ae909b8f0811d6eae99927a894c6158a2fee7eaf 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.2.0">
+      <meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-1.3.0">
     {% endblock %}
     {% block htmltitle %}
       {% if page and page.meta.title %}
diff --git a/package.json b/package.json
index 3011cd9275e8141a9e95ff06b3a60db93a4fd563..d963c28b787199069dc91d7e18e48192b71f93ef 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "mkdocs-material",
-  "version": "1.2.0",
+  "version": "1.3.0",
   "description": "A Material Design theme for MkDocs",
   "keywords": [
     "mkdocs",