packages feed

adhoc-network 1.0.2 → 1.0.3

raw patch · 2 files changed

+5/−5 lines, 2 filesnew-uploaderPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Network/AdHoc/ParserStrict.hs view
@@ -86,10 +86,10 @@  parseID :: String -> (String -> String -> a) -> XMLParser a parseID name constr = stringElement name >>= \str -> case break (=='@') str of-        ([],_) -> fail "no name"-        (_,[]) -> fail "no hostname"-        (_,[_]) -> fail "no hostname"-        (user,host) -> do+        ([],_)         -> fail "no name"+        (_,[])         -> fail "no hostname"+        (_,[_])        -> fail "no hostname"+        (user, (_:host)) -> do                 unless (all isValidUserChar user)                         (fail $ "name "++show user++" contains illegal chars")                 unless (all isValidUserChar host)
adhoc-network.cabal view
@@ -1,5 +1,5 @@ Name:           adhoc-network-Version:        1.0.2+Version:        1.0.3 License:        GPL License-File:   LICENSE Author:         Stephan Friedrichs,