packages feed

mime-mail-ses 0.3.1 → 0.3.2

raw patch · 3 files changed

+7/−1 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Network.Mail.Mime.SES: SESException :: !Status -> !Text -> !Text -> !Text -> SESException
+ Network.Mail.Mime.SES: data SESException
+ Network.Mail.Mime.SES: seCode :: SESException -> !Text
+ Network.Mail.Mime.SES: seMessage :: SESException -> !Text
+ Network.Mail.Mime.SES: seRequestId :: SESException -> !Text
+ Network.Mail.Mime.SES: seStatus :: SESException -> !Status

Files

+ ChangeLog.md view
@@ -0,0 +1,1 @@+__0.3.2__ Expose `SESException` datatype and constructor.
Network/Mail/Mime/SES.hs view
@@ -7,6 +7,7 @@     , usEast1     , usWest2     , euWest1+    , SESException (..)     ) where  import           Control.Exception           (Exception, throwIO)@@ -119,6 +120,9 @@             , seRequestId = reqid             } +-- |+--+-- Exposed since: 0.3.2 data SESException = SESException     { seStatus    :: !Status     , seCode      :: !Text
mime-mail-ses.cabal view
@@ -1,5 +1,5 @@ Name:                mime-mail-ses-Version:             0.3.1+Version:             0.3.2 Synopsis:            Send mime-mail messages via Amazon SES Homepage:            http://github.com/snoyberg/mime-mail License:             MIT@@ -9,6 +9,7 @@ Category:            Web Build-type:          Simple Cabal-version:       >=1.6+extra-source-files:  ChangeLog.md  Library   Exposed-modules:     Network.Mail.Mime.SES