packages feed

yaml 0.8.17.1 → 0.8.17.2

raw patch · 3 files changed

+6/−2 lines, 3 files

Files

ChangeLog.md view
@@ -1,3 +1,7 @@+## 0.8.17.2++* Fix pretty-printing order of UnexpectedEvent's fields (fixes [#84](https://github.com/snoyberg/yaml/issues/84)) [#85](https://github.com/snoyberg/yaml/pull/85)+ ## 0.8.17.1  * Avoid bug in Cabal [#83](https://github.com/snoyberg/yaml/pull/83)
Data/Yaml/Internal.hs view
@@ -78,7 +78,7 @@ prettyPrintParseException pe = case pe of   NonScalarKey -> "Non scalar key"   UnknownAlias anchor -> "Unknown alias `" ++ anchor ++ "`"-  UnexpectedEvent mbExpected mbUnexpected -> unlines+  UnexpectedEvent { _expected = mbExpected, _received = mbUnexpected } -> unlines     [ "Unexpected event: expected"     , "  " ++ show mbExpected     , "but received"
yaml.cabal view
@@ -1,5 +1,5 @@ name:            yaml-version:         0.8.17.1+version:         0.8.17.2 license:         BSD3 license-file:    LICENSE author:          Michael Snoyman <michael@snoyman.com>, Anton Ageev <antage@gmail.com>,Kirill Simonov