mime-mail 0.4.9 → 0.4.10
raw patch · 3 files changed
+6/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ChangeLog.md +4/−0
- Network/Mail/Mime.hs +1/−1
- mime-mail.cabal +1/−1
ChangeLog.md view
@@ -1,3 +1,7 @@+## 0.4.10++* addParts: append mail parts to a Mail [#43](https://github.com/snoyberg/mime-mail/pull/43)+ ## 0.4.9 * Add `sendmailCustomCaptureOutput` [#42](https://github.com/snoyberg/mime-mail/pull/42)
Network/Mail/Mime.hs view
@@ -405,7 +405,7 @@ -- To e.g. add a plain text body use -- > addPart [plainPart body] (emptyMail from) addPart :: Alternatives -> Mail -> Mail-addPart alt mail = mail { mailParts = alt : mailParts mail }+addPart alt mail = mail { mailParts = mailParts mail ++ [alt] } -- | Construct a UTF-8-encoded plain-text 'Part'. plainPart :: LT.Text -> Part
mime-mail.cabal view
@@ -1,5 +1,5 @@ Name: mime-mail-Version: 0.4.9+Version: 0.4.10 Synopsis: Compose MIME email messages. description: Hackage documentation generation is not reliable. For up to date documentation, please see: <http://www.stackage.org/package/mime-mail>. Homepage: http://github.com/snoyberg/mime-mail