attoparsec-data 1.0.4 → 1.0.4.1
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
attoparsec-data.cabal view
@@ -1,5 +1,5 @@ name: attoparsec-data-version: 1.0.4+version: 1.0.4.1 category: Parsing synopsis: Parsers for the standard Haskell data types homepage: https://github.com/nikita-volkov/attoparsec-data
library/Attoparsec/Data/Explicit.hs view
@@ -94,7 +94,7 @@ -} uuid :: A.Parser UUID uuid = do- text <- A.takeWhile (\x -> isAlphaNum x || x == '_')+ text <- A.take 36 case Uuid.fromText text of Just uuid -> return uuid Nothing -> fail (showString "Unparsable UUID: " (show text))