diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,12 +1,15 @@
 # Changelog for fakedata
 
+## 1.0.1
+
+* Improve README with use cases
+* [Cleanup dependencies](https://github.com/fakedata-haskell/fakedata/pull/38)
+
 ## 1.0
 
 ### Breaking changes
 
-* [Make `Fake` as monad
-  transformer.](https://github.com/fakedata-haskell/fakedata/pull/32). This
-  makes writing code with good performance easily.
+* [Make `Fake` as monad transformer](https://github.com/fakedata-haskell/fakedata/pull/32). This makes writing code with good performance easily.
 * Rename `celebrities` to `actors` in Faker.TvShow.Buffy module.
 * Rename `celebrities` to `actors` in Faker.TvShow.FreshPrinceOfBelAir module.
 * Removed module `Faker.Movie.Hobbit`. Use `Faker.Fantasy.Tolkien`
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-![fakedata](https://user-images.githubusercontent.com/737477/53658993-54575200-3c80-11e9-9125-fbcf9e54660f.png)
+![fakedata](https://user-images.githubusercontent.com/737477/53658993-54575200-3c80-11e9-9125-nfbcf9e54660f.png)
 [![Hackage](https://img.shields.io/hackage/v/fakedata.svg)](https://hackage.haskell.org/package/fakedata)
 [![Stackage
 Nightly](http://stackage.org/package/fakedata/badge/nightly)](http://stackage.org/nightly/package/fakedata)
@@ -33,6 +33,19 @@
 fake data such as names, addressess and phone numbers. Note that it
 directly uses the source data from that library, so the quality of
 fake data is quite high!
+
+This packages comes in handy when you have to generate large amount of
+real like data for various purposes. I have personally used it for
+websites where it needs some realistic data in the initial stage,
+loading database with real like values etc. There are companies which
+have used this [for sophisphicated testing
+purpose](https://www.reddit.com/r/haskell/comments/o5n71e/fakedata10_haskell_library_for_producing_quality/h2qxw8a?utm_source=share&utm_medium=web2x&context=3).
+
+Additionly, there are two other packages for creating generators which
+is useful property testing:
+
+* [fakedata-quickcheck](https://github.com/fakedata-haskell/fakedata-quickcheck)
+* [hedgehog-fakedata](https://github.com/parsonsmatt/hedgehog-fakedata)
 
 Tutorial
 --------
diff --git a/fakedata.cabal b/fakedata.cabal
--- a/fakedata.cabal
+++ b/fakedata.cabal
@@ -5,7 +5,7 @@
 -- see: https://github.com/sol/hpack
 
 name:           fakedata
-version:        1.0
+version:        1.0.1
 synopsis:       Library for producing fake data
 description:    Please see the README on GitHub at <https://github.com/psibi/fakedata#readme>
 category:       Random, Fake, FakeData
@@ -677,8 +677,7 @@
   hs-source-dirs:
       src
   build-depends:
-      QuickCheck
-    , attoparsec
+      attoparsec
     , base >=4.7 && <5
     , bytestring
     , containers
@@ -688,7 +687,6 @@
     , filepath
     , hashable
     , random
-    , regex-tdfa
     , string-random
     , template-haskell
     , text
@@ -827,8 +825,7 @@
       bench
   ghc-options: -O2
   build-depends:
-      QuickCheck
-    , attoparsec
+      attoparsec
     , base >=4.7 && <5
     , bytestring
     , containers
@@ -841,7 +838,6 @@
     , gauge
     , hashable
     , random
-    , regex-tdfa
     , string-random
     , template-haskell
     , text
