diff --git a/src/Text/Replace.hs b/src/Text/Replace.hs
--- a/src/Text/Replace.hs
+++ b/src/Text/Replace.hs
@@ -111,8 +111,7 @@
 
 /When you encounter the string __@abc@__ in the input text, replace it with __@xyz@__./
 
-The first argument must be a non-empty string, because there is no sensible way
-to interpret "replace all occurrences of the empty string." -}
+The first argument must be a non-empty string, because there is no sensible way to interpret "replace all occurrences of the empty string." -}
 data Replace =
   Replace
     { replaceFrom :: String' -- ^ A string we're looking for
diff --git a/text-replace.cabal b/text-replace.cabal
--- a/text-replace.cabal
+++ b/text-replace.cabal
@@ -1,5 +1,5 @@
 name: text-replace
-version: 0.0.0.1
+version: 0.0.0.2
 category: Text, Application
 synopsis: Simple text replacements from a list of search/replace pairs
 
@@ -31,7 +31,7 @@
   exposed-modules: Text.Replace
   build-depends:
       base       >=4.9     && <4.11
-    , containers >=0.5.7.1 && <0.5.11
+    , containers >=0.5.7.1 && <0.6
 
 executable text-replace
   default-language: Haskell2010
@@ -40,8 +40,8 @@
   ghc-options: -Wall
   build-depends: text-replace
     , base                 >=4.9      && <4.11
-    , parsec               >=3.1.11   && <3.1.12
-    , optparse-applicative >=0.12.1.0 && <0.14.1
+    , parsec               >=3.1      && <3.2
+    , optparse-applicative >=0.12.1.0 && <0.15
 
 test-suite properties
   default-language: Haskell2010
