packages feed

pinboard 0.8.8 → 0.8.9

raw patch · 3 files changed

+5/−2 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

pinboard.cabal view
@@ -1,5 +1,5 @@ name:                pinboard-version:             0.8.8+version:             0.8.9 synopsis:            Access to the Pinboard API license:             MIT license-file:        LICENSE
src/Pinboard/Client.hs view
@@ -155,7 +155,7 @@ buildReq url = do   req <- liftIO $ parseUrl $ "https://api.pinboard.in/v1/" <> url   return $ req -    { requestHeaders = [("User-Agent","pinboard.hs/0.8.8")]+    { requestHeaders = [("User-Agent","pinboard.hs/0.8.9")]     , checkStatus = \_ _ _ -> Nothing     } 
src/Pinboard/Client/Types.hs view
@@ -35,6 +35,9 @@  import Pinboard.Client.Error  (PinboardError (..)) +import Control.Applicative+import Prelude+ ------------------------------------------------------------------------------  type PinboardEnv = (PinboardConfig, Manager)