diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+# 0.3.5.1
+
+* Backported the fix for the bug that wasn't letting the package compile with GHC 8.0 (see issue #63).
+
 # 0.3.5.0
 
 * Added `Lens.Micro.Extras` with `view`, `preview`, `Getter`, and `Fold`. Now you no longer need microlens-mtl if the only thing you need from it is `view`.
diff --git a/microlens.cabal b/microlens.cabal
--- a/microlens.cabal
+++ b/microlens.cabal
@@ -1,5 +1,5 @@
 name:                microlens
-version:             0.3.5.0
+version:             0.3.5.1
 synopsis:            A tiny part of the lens library with no dependencies
 description:
   This is an extract from <http://hackage.haskell.org/package/lens lens> (with no dependencies). It's not a toy lenses library, unsuitable for “real world”, but merely a small one. It is compatible with lens, and should have same performance. It also has better documentation.
diff --git a/src/Lens/Micro.hs b/src/Lens/Micro.hs
--- a/src/Lens/Micro.hs
+++ b/src/Lens/Micro.hs
@@ -5,6 +5,7 @@
 UndecidableInstances,
 RankNTypes,
 ScopedTypeVariables,
+MonoLocalBinds,
 Trustworthy
   #-}
 
