xml-hamlet 0.5.0 → 0.5.0.1
raw patch · 3 files changed
+10/−1 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ChangeLog.md +6/−0
- Text/Hamlet/XMLParse.hs +3/−0
- xml-hamlet.cabal +1/−1
ChangeLog.md view
@@ -1,3 +1,9 @@+# Changelog for xml-hamlet++## 0.5.0.1++* Compat with GHC 8.8.1 [#147](https://github.com/snoyberg/xml/issues/147)+ ## 0.5.0 * Upgrade to conduit 1.3
Text/Hamlet/XMLParse.hs view
@@ -25,6 +25,9 @@ return = Ok Error s >>= _ = Error s Ok v >>= f = f v+#if MIN_VERSION_base(4,13,0)+instance MonadFail Result where+#endif fail = Error instance Functor Result where fmap = liftM
xml-hamlet.cabal view
@@ -1,5 +1,5 @@ Name: xml-hamlet-Version: 0.5.0+Version: 0.5.0.1 Synopsis: Hamlet-style quasiquoter for XML content Homepage: http://www.yesodweb.com/ License: BSD3