diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,6 @@
-# 0.2.1.0 (2017-05-14)
+# 0.2.0.6 (2017-05-15)
+    * Fix the `Editable` instance for `Identity` and remove reexports.
+# 0.2.0.5 (2017-05-14)
 
 	* Add `editorGeneric` and `editorGenericSimple` for types with generics-sop instances.
 	The latter is only for record and newtypes, whereas the former supports also
diff --git a/src/Graphics/UI/Threepenny/Editors.hs b/src/Graphics/UI/Threepenny/Editors.hs
--- a/src/Graphics/UI/Threepenny/Editors.hs
+++ b/src/Graphics/UI/Threepenny/Editors.hs
@@ -13,6 +13,7 @@
   , field
     -- ** Editor constructors
   , editorUnit
+  , editorIdentity
   , editorReadShow
   , editorEnumBounded
   , editorSum
@@ -20,8 +21,6 @@
     -- ** Generic editors
   , editorGeneric
   , editorGenericSimple
-  -- * Reexports
-  , Compose(..)
   )where
 
 import Graphics.UI.Threepenny.Editors.Profunctor
diff --git a/src/Graphics/UI/Threepenny/Editors/Profunctor.hs b/src/Graphics/UI/Threepenny/Editors/Profunctor.hs
--- a/src/Graphics/UI/Threepenny/Editors/Profunctor.hs
+++ b/src/Graphics/UI/Threepenny/Editors/Profunctor.hs
@@ -28,6 +28,7 @@
   , field
     -- ** Editor constructors
   , editorUnit
+  , editorIdentity
   , editorReadShow
   , editorEnumBounded
   , editorSum
@@ -35,8 +36,6 @@
     -- ** Generic editors
   , editorGeneric
   , editorGenericSimple
-  -- * Reexports
-  , Compose(..)
   )where
 
 import           Data.Bifunctor
@@ -129,7 +128,10 @@
   editor = (,) <$> lmap fst editor |*| lmap snd editor
 
 instance Editable a => Editable (Identity a) where
-  editor = dimap Identity runIdentity editor
+  editor = editorIdentity editor
+
+editorIdentity :: EditorFactory a a -> EditorFactory (Identity a) (Identity a)
+editorIdentity = dimap runIdentity Identity
 
 {--------------------------------------------
   Generic derivations
diff --git a/threepenny-editors.cabal b/threepenny-editors.cabal
--- a/threepenny-editors.cabal
+++ b/threepenny-editors.cabal
@@ -3,7 +3,7 @@
 -- see: https://github.com/sol/hpack
 
 name:           threepenny-editors
-version:        0.2.0.5
+version:        0.2.0.6
 synopsis:       Composable algebraic editors
 description:    This package provides a type class 'Editable' and combinators to
                 easily put together form-like editors for algebraic datatypes.
