lucid 2.2 → 2.3
raw patch · 3 files changed
+3/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ Lucid: data HtmlT m a
Files
- lucid.cabal +1/−1
- src/Lucid.hs +1/−0
- test/Main.hs +1/−1
lucid.cabal view
@@ -1,5 +1,5 @@ name: lucid-version: 2.2+version: 2.3 synopsis: Clear to write, read and edit DSL for HTML description: Clear to write, read and edit DSL for HTML. See the 'Lucid' module for description and documentation.
src/Lucid.hs view
@@ -21,6 +21,7 @@ ,runHtmlT -- * Types ,Html+ ,HtmlT ,Attribute -- * Classes -- $overloaded
test/Main.hs view
@@ -184,7 +184,7 @@ testSelfClosing :: Spec testSelfClosing = do it "br" (renderText (br_ []) == "<br>")- it "hr" (renderText (hr_ []) == "<br>")+ it "hr" (renderText (hr_ []) == "<hr>") it "input" (renderText (input_ []) == "<input>")