packages feed

twitter-types 0.10.0 → 0.10.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

Web/Twitter/Types.hs view
@@ -360,7 +360,7 @@     } deriving (Show, Eq, Data, Typeable, Generic)  parseIntegral :: Integral a => Text -> Parser a-parseIntegral v = either (fail $ "couldn't parse stringized int: " ++ show v) (return . fst) $ decimal v+parseIntegral v = either (\_ -> fail $ "couldn't parse stringized int: " ++ show v) (return . fst) $ decimal v  epochMsToUTCTime :: Int64 -> UTCTime epochMsToUTCTime = posixSecondsToUTCTime . fromRational . (% 1000) . fromIntegral
twitter-types.cabal view
@@ -1,5 +1,5 @@ name:              twitter-types-version:           0.10.0+version:           0.10.1 license:           BSD3 license-file:      LICENSE author:            Takahiro HIMURA