diff --git a/autoexporter.cabal b/autoexporter.cabal
--- a/autoexporter.cabal
+++ b/autoexporter.cabal
@@ -1,9 +1,11 @@
--- This file has been generated from package.yaml by hpack version 0.17.0.
+-- This file has been generated from package.yaml by hpack version 0.20.0.
 --
 -- see: https://github.com/sol/hpack
+--
+-- hash: d0a4fb1809125a8d78716c9527daf9278b4b4b2b4a346f881925e5176b8d9c31
 
 name:           autoexporter
-version:        1.1.2
+version:        1.1.3
 synopsis:       Automatically re-export modules.
 description:    Autoexporter automatically re-exports modules.
 category:       Utility
@@ -30,12 +32,14 @@
       source/library
   ghc-options: -Wall
   build-depends:
-      base >=4.7 && <4.11
-    , Cabal >=1.22 && <1.25 || >=2.0 && <2.1
+      Cabal >=1.22 && <1.25 || >=2.0 && <2.1
+    , base >=4.7 && <4.11
     , directory >=1.2.5 && <1.4
     , filepath >=1.3 && <1.5
   exposed-modules:
       Autoexporter
+  other-modules:
+      Paths_autoexporter
   default-language: Haskell2010
 
 executable autoexporter
@@ -44,6 +48,8 @@
       source/executable
   ghc-options: -Wall
   build-depends:
-      base
-    , autoexporter
+      autoexporter
+    , base
+  other-modules:
+      Paths_autoexporter
   default-language: Haskell2010
diff --git a/package.yaml b/package.yaml
--- a/package.yaml
+++ b/package.yaml
@@ -27,4 +27,4 @@
 maintainer: Taylor Fausak
 name: autoexporter
 synopsis: Automatically re-export modules.
-version: '1.1.2'
+version: '1.1.3'
diff --git a/source/library/Autoexporter.hs b/source/library/Autoexporter.hs
--- a/source/library/Autoexporter.hs
+++ b/source/library/Autoexporter.hs
@@ -1,3 +1,10 @@
+-- | This package isn't really meant to be used as a library. It's typically
+-- used as a GHC preprocessor, like so:
+--
+-- > {-# OPTIONS_GHC -F -pgmF autoexporter #-}
+--
+-- For more information, please see the README on GitHub:
+-- <https://github.com/tfausak/autoexporter#readme>.
 module Autoexporter where
 
 import qualified Data.List as List
diff --git a/stack.yaml b/stack.yaml
--- a/stack.yaml
+++ b/stack.yaml
@@ -1,1 +1,1 @@
-resolver: lts-8.0
+resolver: lts-10.0
