authenticate-oauth 1.5.1 → 1.5.1.1
raw patch · 2 files changed
+2/−2 lines, 2 filesdep ~RSAdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: RSA, base
API changes (from Hackage documentation)
Files
Web/Authenticate/OAuth.hs view
@@ -485,7 +485,7 @@ paramEncode :: BS.ByteString -> BS.ByteString paramEncode = BS.concatMap escape where- escape c | isAscii c && (isAlpha c || isDigit c || c `elem` "-._~") = BS.singleton c+ escape c | isAscii c && (isAlpha c || isDigit c || c `elem` ("-._~" :: String)) = BS.singleton c | otherwise = let num = map toUpper $ showHex (ord c) "" oct = '%' : replicate (2 - length num) '0' ++ num in BS.pack oct
authenticate-oauth.cabal view
@@ -1,5 +1,5 @@ name: authenticate-oauth-version: 1.5.1+version: 1.5.1.1 license: BSD3 license-file: LICENSE author: Hiromi Ishii