diff --git a/slick.cabal b/slick.cabal
--- a/slick.cabal
+++ b/slick.cabal
@@ -4,10 +4,10 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: f0f250c963e4f6345648991c39e8eee43d66c1fe739aeac8e9e349ad2ce3d9c6
+-- hash: 829e4b52e2afe2226f114803f7727188e9415d46ea4b31c36e4cbd4820fce09a
 
 name:           slick
-version:        1.0.1.0
+version:        1.0.1.1
 synopsis:       A quick & easy static site builder built with shake and pandoc.
 description:    Please see the README on GitHub at <https://github.com/ChrisPenner/slick#readme>
 category:       Web
diff --git a/src/Slick/Utils.hs b/src/Slick/Utils.hs
--- a/src/Slick/Utils.hs
+++ b/src/Slick/Utils.hs
@@ -9,7 +9,7 @@
   , convert
   ) where
 
-import Data.Aeson
+import Data.Aeson as A
 import Development.Shake
 import Development.Shake.FilePath
 
@@ -33,6 +33,6 @@
 --   Failure to deserialize fails the Shake build.
 convert :: (FromJSON a, ToJSON a, FromJSON b) => a -> Action b
 convert a = case fromJSON (toJSON a) of
-  Success r   -> pure r
-  Error   err -> fail $ "json conversion error:" ++ err
+  A.Success r   -> pure r
+  A.Error   err -> fail $ "json conversion error:" ++ err
 
