diff --git a/CHANGELOG.md b/CHANGELOG.md
index 60561a5..fe2f875 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,14 @@
## Changelog
+### v1.2.0
+
+- add the following configuration settings to toggle UI features off (#98):
+ - `disable_nav_previous_next`: Turn off Previous/Next navigation links in the navbar
+ - `disable_nav_search`: Turn off Search in the navbar
+ - `disable_nav_site_name`: Turn off the site_name link in the navbar
+ - `disable_footer`: Turn off the footer entirely
+ - `disable_footer_except_revision`: Turn off the default footer message, but display the page revision date if it's available
+
### v1.1.0
- new: added optional header on hover permalink support with the `markdown_extensions` > `-toc` > `permalink: true` configuration (#95)
diff --git a/docs/index.md b/docs/index.md
index d20ffcc..81139e0 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -34,7 +34,7 @@ Then navigate to the root of your project directory:
Download the Cinder theme archive by clicking the button below.
-
+
Unpack the contents of the archive into a directory named `cinder` at the top level of your MkDocs project directory.
diff --git a/setup.py b/setup.py
index 96cd1a2..9229368 100644
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages
-VERSION = "1.1.0"
+VERSION = "1.2.0"
setup(