diff --git a/gore-and-ash-sdl.cabal b/gore-and-ash-sdl.cabal
--- a/gore-and-ash-sdl.cabal
+++ b/gore-and-ash-sdl.cabal
@@ -1,5 +1,5 @@
 name:                gore-and-ash-sdl
-version:             1.1.0.0
+version:             1.1.0.1
 synopsis:            Gore&Ash core module for integration with SDL library
 description:         Please see README.md
 homepage:            git@github.com:Teaspot-Studio/gore-and-ash-sdl.git
diff --git a/src/Game/GoreAndAsh/SDL.hs b/src/Game/GoreAndAsh/SDL.hs
--- a/src/Game/GoreAndAsh/SDL.hs
+++ b/src/Game/GoreAndAsh/SDL.hs
@@ -1,3 +1,4 @@
+{-# OPTIONS_GHC -fno-warn-unused-imports #-}
 {-|
 Module      : Game.GoreAndAsh.SDL
 Description : Module that contains SDL integration for Gore&Ash
@@ -66,6 +67,15 @@
   -- ** Window arrow API
   , windowClosed
   ) where
+
+-- imports for docs
+import Control.Monad.State.Strict
+import Control.Monad.Catch
+import Control.Wire
+import Data.Text
+import Game.GoreAndAsh.Core
+import Linear
+import SDL
 
 import SDL as ReExport hiding (get, Event)
 
