regex-tdfa 1.1.7 → 1.1.8
raw patch · 3 files changed
+9/−4 lines, 3 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- Text.Regex.TDFA.NewDFA.MakeTest: test_multiline :: Uncons text => WhichTest -> Index -> Char -> text -> Bool
- Text.Regex.TDFA.NewDFA.MakeTest: test_singleline :: Uncons text => WhichTest -> Index -> Char -> text -> Bool
+ Text.Regex.TDFA.NewDFA.MakeTest: test_singleline, test_multiline :: Uncons text => WhichTest -> Index -> Char -> text -> Bool
Files
- Text/Regex/TDFA/Common.hs +3/−1
- Text/Regex/TDFA/CorePattern.hs +3/−1
- regex-tdfa.cabal +3/−2
Text/Regex/TDFA/Common.hs view
@@ -329,7 +329,9 @@ ++ "\n , dt_a = " ++ indent' a ++ "\n , dt_b = " ++ indent' b ++ "\n }"- where indent' = init . unlines . (\(h:t) -> h : (map (spaces ++) t)) . lines . showDT+ where indent' = init . unlines . (\s -> case s of+ [] -> []+ (h:t) -> h : (map (spaces ++) t)) . lines . showDT spaces = replicate 10 ' '
Text/Regex/TDFA/CorePattern.hs view
@@ -129,7 +129,9 @@ "\n , tagged = "++show (tagged q)++ "\n , wants = "++show (wants q)++ "\n , unQ = "++ indent' (unQ q)++" }"- where indent' = unlines . (\(h:t) -> h : (map (spaces ++) t)) . lines . show+ where indent' = unlines . (\s -> case s of+ [] -> []+ (h:t) -> h : (map (spaces ++) t)) . lines . show spaces = replicate 10 ' ' -- Smart constructors for NullView
regex-tdfa.cabal view
@@ -1,5 +1,5 @@ Name: regex-tdfa-Version: 1.1.7+Version: 1.1.8 -- 0.99.4 tests pnonempty' = \ p -> POr [ PEmpty, p ] instead of PNonEmpty -- 0.99.5 remove PNonEmpty constructor -- 0.99.6 change to nested nonEmpty calls for PBound@@ -45,6 +45,7 @@ -- 1.1.5 try needUniqTags in POr in CorePattern.hs, try (toAdvice b) for PStar child -- 1.1.6 Fix bug preventing []] [-] [^]] [^-] (thanks to Maxime Henrion) -- 1.1.7 fix url below+-- 1.1.8 Make ghc-7.0.2 on platorm 2011.2.0.0.0 happy License: BSD3 License-File: LICENSE Copyright: Copyright (c) 2007, Christopher Kuklewicz@@ -94,5 +95,5 @@ Text.Regex.TDFA.TNFA Buildable: True Extensions: MultiParamTypeClasses, FunctionalDependencies, BangPatterns, MagicHash, RecursiveDo, NoMonoPatBinds, ForeignFunctionInterface, UnboxedTuples, TypeOperators, FlexibleContexts, ExistentialQuantification, UnliftedFFITypes, TypeSynonymInstances, FlexibleInstances- GHC-Options: -Wall -O2 -funbox-strict-fields+ GHC-Options: -Wall -funbox-strict-fields -fspec-constr-count=10 -O2 -fno-warn-orphans GHC-Prof-Options: -auto-all