packages feed

rematch-text 0.1.0.1 → 0.1.0.2

raw patch · 2 files changed

+10/−2 lines, 2 filesdep +HUnitdep +hspecdep ~rematchPVP ok

version bump matches the API change (PVP)

Dependencies added: HUnit, hspec

Dependency ranges changed: rematch

API changes (from Hackage documentation)

Files

+ Main.hs view
@@ -0,0 +1,4 @@+import qualified Control.Rematch.Text.Specs as S++main :: IO ()+main = S.main
rematch-text.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/  name:                rematch-text-version:             0.1.0.1+version:             0.1.0.2 synopsis:            `rematch` matchers for Data.Text -- description: license:             MIT@@ -17,4 +17,8 @@ library   exposed-modules: Control.Rematch.Text.Strict, Control.Rematch.Text.Lazy   -- other-modules:-  build-depends:       base >=4.5.0 && < 5, rematch == 0.1.*, text >= 0.10+  build-depends:       base >=4.5.0 && < 5, rematch >= 0.2, text >= 0.10+test-suite tests+  build-depends:       base >= 4.5.0 && < 5, hspec >= 1.4, HUnit >= 1.2, text >= 0.10, rematch >= 0.2+  type: exitcode-stdio-1.0+  main-is: Main.hs