pinboard 0.10.1.4 → 0.10.2.0
raw patch · 6 files changed
+12/−10 lines, 6 filesdep ~timePVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: time
API changes (from Hackage documentation)
- Pinboard.ApiTypes: readNoteTime :: Monad m => String -> m UTCTime
+ Pinboard.ApiTypes: readNoteTime :: MonadFail m => String -> m UTCTime
Files
- changelog.md +4/−0
- pinboard.cabal +7/−6
- src/Pinboard/ApiTypes.hs +1/−1
- src/Pinboard/Client.hs +0/−1
- src/Pinboard/Types.hs +0/−1
- tests/PropJSON.hs +0/−1
changelog.md view
@@ -1,3 +1,7 @@+__v0.10.2.0++update time dependency+ __v0.10.1.4 network 3.0.0.0
pinboard.cabal view
@@ -1,11 +1,13 @@--- This file has been generated from package.yaml by hpack version 0.28.2.+cabal-version: 1.12++-- This file has been generated from package.yaml by hpack version 0.33.0. -- -- see: https://github.com/sol/hpack ----- hash: fe218a956654ea2924ae85b422376680a8b48c0cd673958e16899bd215d033f4+-- hash: eaf046ffeb948c5457f43992f4074cd5931d51098aed3ec2cac26197374b3ff1 name: pinboard-version: 0.10.1.4+version: 0.10.2.0 synopsis: Access to the Pinboard API description: . The Pinboard API is a way to interact programatically with@@ -21,10 +23,9 @@ license: MIT license-file: LICENSE build-type: Simple-cabal-version: >= 1.10 extra-source-files:- changelog.md README.md+ changelog.md source-repository head type: git@@ -48,7 +49,7 @@ , profunctors >=5 , random >=1.1 , text >=0.11 && <1.3- , time >=1.5 && <1.9+ , time >1.3 , transformers >=0.4.0.0 , unliftio , unliftio-core
src/Pinboard/ApiTypes.hs view
@@ -198,7 +198,7 @@ ] readNoteTime- :: Monad m+ :: MonadFail m => String -> m UTCTime readNoteTime = parseTimeM True defaultTimeLocale "%F %T"
src/Pinboard/Client.hs view
@@ -57,7 +57,6 @@ import UnliftIO.Exception import Data.ByteString.Char8 (pack)-import Data.Monoid ((<>)) import Data.Aeson (FromJSON, eitherDecodeStrict') import Network.HTTP.Types (urlEncode)
src/Pinboard/Types.hs view
@@ -26,7 +26,6 @@ import Control.Monad.Reader (ReaderT) import Control.Monad.Reader.Class (MonadReader) import Control.Monad.Trans.Reader (runReaderT)-import Control.Monad.IO.Class (MonadIO) import UnliftIO
tests/PropJSON.hs view
@@ -6,7 +6,6 @@ import Data.Aeson import Data.Aeson.Types (parseEither)-import Data.Monoid ((<>)) import Data.Typeable (Proxy(..), typeOf, Typeable) import qualified Data.ByteString.Lazy.Char8 as BL8 import Test.Hspec