diff --git a/Changelog.md b/Changelog.md
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,3 +1,9 @@
+## 1.0.5
+
+* Increased upper-bounds of:
+
+      * `vector`
+
 ## 1.0.4
 
 * Added `forkCarbonRestart`, which allows caller's to have a little more control over what happens when the Carbon thread crashes.
diff --git a/ekg-carbon.cabal b/ekg-carbon.cabal
--- a/ekg-carbon.cabal
+++ b/ekg-carbon.cabal
@@ -1,5 +1,5 @@
 name: ekg-carbon
-version: 1.0.4
+version: 1.0.5
 synopsis: An EKG backend to send statistics to Carbon (part of Graphite monitoring tools)
 homepage: http://github.com/ocharles/ekg-carbon
 license: BSD3
@@ -22,7 +22,7 @@
     text >= 0.10 && < 1.3,
     time >= 1.4 && < 1.6,
     unordered-containers,
-    vector >= 0.10 && < 0.11
+    vector >= 0.10 && < 0.12
 
   hs-source-dirs: src
   default-language: Haskell2010
diff --git a/src/System/Remote/Monitoring/Carbon.hs b/src/System/Remote/Monitoring/Carbon.hs
--- a/src/System/Remote/Monitoring/Carbon.hs
+++ b/src/System/Remote/Monitoring/Carbon.hs
@@ -100,12 +100,10 @@
 -- For example, you can use 'forkCarbonRestart' to log failures and restart
 -- logging:
 --
--- @
--- 'forkCarbonRestart' opts
---                     store
---                     (\ex restart -> do hPutStrLn stderr ("ekg-carbon: " ++ show ex)
---                                        restart)
--- @
+-- > forkCarbonRestart defaultCarbonOptions
+-- >                   store
+-- >                   (\ex restart -> do hPutStrLn stderr ("ekg-carbon: " ++ show ex)
+-- >                                      restart)
 forkCarbonRestart :: CarbonOptions
                   -> EKG.Store
                   -> (SomeException -> IO () -> IO ())
