diff --git a/Flamingra/Docs.hs b/Flamingra/Docs.hs
new file mode 100644
--- /dev/null
+++ b/Flamingra/Docs.hs
@@ -0,0 +1,23 @@
+-- |
+-- It will be (kind of) interactive (e.g. <http://lelf.lu/files/pandoc.svg>).
+--                      .
+-- <<pandoc.svg>>
+--  
+-- = TL;DR (and the only one available) guide:
+-- 
+-- > some-program +RTS -P
+-- > wget https://raw.githubusercontent.com/brendangregg/FlameGraph/master/flamegrph.pl
+-- > flamingra some-program.prof | perl flamegraph.pl > picturesque.svg
+-- 
+-- = Usage:
+-- 
+-- > flamingra out.prof | …
+-- 
+-- or
+-- 
+-- > … | flamingra | …
+-- 
+-- where out.prof is @-P@ profiling output.
+
+module Flamingra.Docs where
+
diff --git a/Flamingra/Pleases/Haddock.hs b/Flamingra/Pleases/Haddock.hs
deleted file mode 100644
--- a/Flamingra/Pleases/Haddock.hs
+++ /dev/null
@@ -1,1 +0,0 @@
-module Flamingra.Pleases.Haddock where
diff --git a/Main.hs b/Main.hs
--- a/Main.hs
+++ b/Main.hs
@@ -7,7 +7,7 @@
 import Control.Monad
 import Options.Applicative
 import System.IO
-import System.Exit
+import System.Exit (exitWith, ExitCode(..))
 import Control.Monad.Trans.Either
 
 
diff --git a/changelog b/changelog
new file mode 100644
--- /dev/null
+++ b/changelog
@@ -0,0 +1,7 @@
+2015-04-19  Antonio Nikishaev  <me@lelf.lu>
+
+	* 0.1.1: Restrict deps
+
+	* 0.1.1.1: Dear diary, FUCK haddock, I've simply moved docs to Flamingra.Docs;
+                   ghc-7.10.1
+
diff --git a/flamingra.cabal b/flamingra.cabal
--- a/flamingra.cabal
+++ b/flamingra.cabal
@@ -1,27 +1,8 @@
 
 name:                flamingra
-version:             0.1.1
+version:             0.1.1.1
 synopsis:            FlameGraphs of profiling
 description:         Hack to turn the profiling output into the format suitable for FlameGraph.
-                     It will be (kind of) interactive (e.g. <http://lelf.lu/files/pandoc.svg>).
-                     .
-                     <<pandoc.svg>>
-                     .
-                     =TL;DR (and the only one available) guide:
-                     .
-                     > some-program +RTS -P
-                     > wget https://raw.githubusercontent.com/brendangregg/FlameGraph/master/flamegraph.pl
-                     > flamingra some-program.prof | perl flamegraph.pl > picturesque.svg
-                     .
-                     =Usage:
-                     .
-                     > flamingra out.prof | …
-                     or
-                     .
-                     > … | flamingra | …
-                     .
-                     where out.prof is @-P@ profiling output.
-
 license:             BSD3
 license-file:        LICENSE
 author:              Antonio Nikishaev
@@ -29,9 +10,9 @@
 -- copyright:           
 category:            Development
 build-type:          Simple
-extra-doc-files:     pandoc.svg
+extra-doc-files:     pandoc.svg changelog
 cabal-version:       >=1.10
-tested-with:         GHC==7.8.3
+tested-with:         GHC==7.8.3, GHC==7.10.1
 
 source-repository head
   type:     git
@@ -55,7 +36,7 @@
   default-language:    Haskell2010
 
 library
-  exposed-modules:  Flamingra.Pleases.Haddock
+  exposed-modules:  Flamingra.Docs
   default-language: Haskell2010
   build-depends:    base <= 42
 
