diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,9 @@
 # Revision history for derive-storable
 
+## 0.1.0.5  -- 2016-12-07
+
+* Made the information about performance problems more visible in README.md
+
 ## 0.1.0.4  -- 2016-11-29
 
 * Fixed the bug with Foreign.Storable.Generic.Internal.Instances module.
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -8,6 +8,11 @@
 * all fields of the constructor need to be GStorable.
 * implement a Generic instance (`derive (Generic)`)
 
+
+### Note on performance
+
+There are some problems with performance of derived Storable instances. For now there exists a solution in form of GHC Core plugin - [derive-storable-plugin](https://hackage.haskell.org/package/derive-storable-plugin).
+
 # Usage
 
 Here's an example:
@@ -45,6 +50,3 @@
 
 ```
 
-#Optimisation
-
-There are some problems with performance of derived Storable instances. For now there exists a solution in form of GHC Core plugin - [derive-storable-plugin](https://hackage.haskell.org/package/derive-storable-plugin).
diff --git a/derive-storable.cabal b/derive-storable.cabal
--- a/derive-storable.cabal
+++ b/derive-storable.cabal
@@ -1,6 +1,6 @@
 name:                derive-storable
 
-version:             0.1.0.5
+version:             0.1.0.6
 synopsis:            Derive Storable instances with GHC.Generics.           
 
 description:         Derive Storable instances with GHC.Generics. The derived Storable instances have the same alignment as C structs.
