packages feed

text-replace 0.0.0.1 → 0.0.0.2

raw patch · 2 files changed

+5/−6 lines, 2 filesdep ~containersdep ~optparse-applicativedep ~parsec

Dependency ranges changed: containers, optparse-applicative, parsec

Files

src/Text/Replace.hs view
@@ -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
text-replace.cabal view
@@ -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