packages feed

inchworm 1.0.0.1 → 1.0.1.1

raw patch · 2 files changed

+8/−7 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Text/Lexer/Inchworm/Char.hs view
@@ -181,14 +181,15 @@ scanHaskellCommentLine   = munchPred Nothing matchC acceptC  where-        matchC 0 '-'     = True-        matchC 1 '-'     = True-        matchC _ '\n'    = False+        matchC 0 '-'                    = True+        matchC 1 '-'                    = True+        matchC _ '\n'                   = False         matchC ix _       -         | ix < 2       = False-         | otherwise    = True+         | ix < 2                       = False+         | otherwise                    = True -        acceptC cs      = Just cs+        acceptC ('-' : '-' : cs)        = Just cs+        acceptC _                       = Nothing  {-# SPECIALIZE INLINE      scanHaskellCommentLine
inchworm.cabal view
@@ -1,5 +1,5 @@ name:           inchworm-version:        1.0.0.1+version:        1.0.1.1 license:        MIT license-file:   LICENSE author:         The Inchworm Development Team