packages feed

tweet-hs 1.0.1.0 → 1.0.1.1

raw patch · 2 files changed

+3/−3 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

src/Web/Tweet/Parser.hs view
@@ -102,7 +102,7 @@     string "\\ud"     str1 <- count 3 anyChar     str2 <- string "\\ud" >> count 3 anyChar-    let num = TE.decodeUtf16BE . BSW.pack $ "d" <> str1 <> "d" <> str2+    let num = decodeUtf16 $ "d" <> str1 <> "d" <> str2     pure . T.head $ num  decodeUtf16 = TE.decodeUtf16BE . BS.concat . go@@ -128,7 +128,7 @@ -- | Parse escaped characters specialChar :: Char -> Parser Char specialChar c = do-    string $ (c:"\\")+    string $ "\\" <> pure c     pure c  -- | Convert a string of four hexadecimal digits to an integer.
tweet-hs.cabal view
@@ -1,5 +1,5 @@ name:                tweet-hs-version:             1.0.1.0+version:             1.0.1.1 synopsis:            Command-line tool for twitter description:         a Command Line Interface Tweeter homepage:            https://github.com/vmchale/command-line-tweeter#readme