diff --git a/safecopy.cabal b/safecopy.cabal
--- a/safecopy.cabal
+++ b/safecopy.cabal
@@ -3,7 +3,7 @@
 -- http://www.haskell.org/cabal/release/cabal-latest/doc/users-guide/authors.html#pkg-descr.
 -- The name of the package.
 Name:                safecopy
-Version:             0.9.4.1
+Version:             0.9.4.2
 Synopsis:            Binary serialization with version control.
 Description:         An extension to Data.Serialize with built-in version control.
 Homepage:            https://github.com/acid-state/safecopy
@@ -34,11 +34,11 @@
                        array < 0.6,
                        cereal >= 0.5 && < 0.6,
                        bytestring < 0.11,
-                       containers >= 0.3 && < 0.6,
+                       containers >= 0.3 && < 0.7,
                        old-time < 1.2,
-                       template-haskell < 2.14,
+                       template-haskell < 2.15,
                        text < 1.3,
-                       time < 1.9,
+                       time < 1.10,
                        vector >= 0.10 && < 0.13
 
   if !impl(ghc > 8.0)
diff --git a/src/Data/SafeCopy.hs b/src/Data/SafeCopy.hs
--- a/src/Data/SafeCopy.hs
+++ b/src/Data/SafeCopy.hs
@@ -49,8 +49,8 @@
 --     getCopy = contain $ Contacts_v0 \<$\> safeGet
 --
 --data Contact = Contact { name    :: Name
---                        , address :: Address
---                        , phone   :: Phone }
+--                       , address :: Address
+--                       , phone   :: Phone }
 --instance SafeCopy Contact where
 --    putCopy Contact{..} = contain $ do safePut name; safePut address; safePut phone
 --    getCopy = contain $ Contact \<$\> safeGet \<*\> safeGet \<*\> safeGet
