diff --git a/pinboard.cabal b/pinboard.cabal
--- a/pinboard.cabal
+++ b/pinboard.cabal
@@ -2,10 +2,10 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: a128fdac0398efc5e98857801cf3fd9898c22a2f68dcc4c33c1f8ef86bf671e9
+-- hash: 40ab49371b3944c29cfa2cacc28f7f55ad5d2e6bcde2d5aa3b8e26163a0d08b8
 
 name:           pinboard
-version:        0.10.0.0
+version:        0.10.0.1
 synopsis:       Access to the Pinboard API
 description:    .
                 The Pinboard API is a way to interact programatically with
diff --git a/src/Pinboard/Logging.hs b/src/Pinboard/Logging.hs
--- a/src/Pinboard/Logging.hs
+++ b/src/Pinboard/Logging.hs
@@ -1,6 +1,7 @@
 {-# LANGUAGE ScopedTypeVariables #-}
 {-# LANGUAGE OverloadedStrings #-}
 {-# LANGUAGE Rank2Types #-}
+{-# LANGUAGE CPP #-}
 
 -- |
 -- Module      : Pinboard.Logging
@@ -30,6 +31,9 @@
 import Data.Text as T
 
 import Pinboard.Types
+#if !(MIN_VERSION_base(4,10,1))
+import Data.Monoid
+#endif
 
 ------------------------------------------------------------------------------
 
