packages feed

pinboard 0.10.0.0 → 0.10.0.1

raw patch · 2 files changed

+6/−2 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

pinboard.cabal view
@@ -2,10 +2,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: a128fdac0398efc5e98857801cf3fd9898c22a2f68dcc4c33c1f8ef86bf671e9+-- hash: 40ab49371b3944c29cfa2cacc28f7f55ad5d2e6bcde2d5aa3b8e26163a0d08b8  name:           pinboard-version:        0.10.0.0+version:        0.10.0.1 synopsis:       Access to the Pinboard API description:    .                 The Pinboard API is a way to interact programatically with
src/Pinboard/Logging.hs view
@@ -1,6 +1,7 @@ {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE Rank2Types #-}+{-# LANGUAGE CPP #-}  -- | -- Module      : Pinboard.Logging@@ -30,6 +31,9 @@ import Data.Text as T  import Pinboard.Types+#if !(MIN_VERSION_base(4,10,1))+import Data.Monoid+#endif  ------------------------------------------------------------------------------