hsemail 1.7.1 → 1.7.2
raw patch · 4 files changed
+7/−7 lines, 4 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Text/ParserCombinators/Parsec/Rfc2234.hs +1/−1
- Text/ParserCombinators/Parsec/Rfc2821.hs +1/−1
- Text/ParserCombinators/Parsec/Rfc2822.hs +2/−2
- hsemail.cabal +3/−3
Text/ParserCombinators/Parsec/Rfc2234.hs view
@@ -1,6 +1,6 @@ {- | Module : Text.ParserCombinators.Parsec.Rfc2234- Copyright : (c) 2008 Peter Simons+ Copyright : (c) 2012 Peter Simons License : BSD3 Maintainer : simons@cryp.to
Text/ParserCombinators/Parsec/Rfc2821.hs view
@@ -1,6 +1,6 @@ {- | Module : Text.ParserCombinators.Parsec.Rfc2821- Copyright : (c) 2008 Peter Simons+ Copyright : (c) 2012 Peter Simons License : BSD3 Maintainer : simons@cryp.to
Text/ParserCombinators/Parsec/Rfc2822.hs view
@@ -1,6 +1,6 @@ {- | Module : Text.ParserCombinators.Parsec.Rfc2822- Copyright : (c) 2008 Peter Simons+ Copyright : (c) 2012 Peter Simons License : BSD3 Maintainer : simons@cryp.to@@ -191,7 +191,7 @@ -- |Match either 'atom' or 'quoted_string'. word :: CharParser a String-word = atom <|> quoted_string <?> "word"+word = unfold (atom <|> quoted_string) <?> "word" -- |Match either one or more 'word's or an 'obs_phrase'.
hsemail.cabal view
@@ -1,6 +1,6 @@ Name: hsemail-Version: 1.7.1-Copyright: (c) 2004-2011 Peter Simons+Version: 1.7.2+Copyright: (c) 2012 Peter Simons License: BSD3 License-File: LICENSE Author: Peter Simons <simons@cryp.to>, Gero Kriependorf <gero-dev@physra.net>, Marty Pauley <marty@kasei.com>@@ -11,7 +11,7 @@ Description: Parsers for the syntax defined in RFC2821 and 2822 Cabal-Version: >= 1.6 Build-Type: Simple-Tested-With: GHC == 7.0.2+Tested-With: GHC == 7.0.4, GHC == 7.4.1 Extra-Source-Files: example/message-test.hs example/message-test.input