diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,8 +1,10 @@
 # Revision history for generic-storable-plugin
 
-## 0.1.0.1  -- 2016-09-11
+## 0.1.0.2  -- 2016-09-11
 
+* Changed generic-storable to derive-storable in README.md
 * Added README.md to the package
+
 
 ## 0.1.0.0  -- 2016-09-08
 
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,12 +1,12 @@
 # Introduction
 
-The `generic-storable` package allows you to automatically generate Storable instances for your datatypes. It uses GHC.Generics, which allows the coders to derive certain instances automatically. To derive a (G)Storable instance, the data-type has to:
+The `derive-storable` package allows you to automatically generate Storable instances for your datatypes. It uses GHC.Generics, which allows the coders to derive certain instances automatically. To derive a (G)Storable instance, the data-type has to:
 
 * have only one constructor.
 * all fields of the constructor need to be GStorable.
 * implement a Generic instance (`derive (Generic)`)
 
-In order to achieve the same performance as for hand-written instances, take a look at [generic-storable-plugin](https://www.github.com/mkloczko/generic-storable-plugin).
+In order to achieve the same performance as for hand-written instances, take a look at [derive-storable-plugin](https://www.github.com/mkloczko/derive-storable-plugin).
 
 # Usage
 
diff --git a/derive-storable.cabal b/derive-storable.cabal
--- a/derive-storable.cabal
+++ b/derive-storable.cabal
@@ -1,12 +1,12 @@
 name:                derive-storable
 
-version:             0.1.0.1
+version:             0.1.0.2
 synopsis: Derive Storable instances with help of GHC.Generics.           
 
 description:         The package allows for automatic derivation of Storable instances 
                      with C-like memory layout.
 
-homepage:            https://www.github.com/mkloczko/derive-storable-plugin/
+homepage:            https://www.github.com/mkloczko/derive-storable/
 license:             MIT
 
 license-file:        LICENSE
