packages feed

type-of-html 1.3.0.0 → 1.3.0.1

raw patch · 2 files changed

+4/−3 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Readme.md view
@@ -143,7 +143,7 @@ >>> div_ (Just (div_ "a")) <div><div>a</div></div> ->>> div_ (if True then Nothing else div_ "b")+>>> div_ (if True then Nothing else Just (div_ "b")) <div></div>  >>> div_ (if True then Left (div_ "a") else Right "b")@@ -188,7 +188,8 @@ AppendSymbol. Afterwards we reify the Symbols with symbolVal which will be embedded in the executable as Addr#. All this happens at compile time. At runtime we do only generate the content and append-Builders.+Builders. Because all functions from this library get inlined, we'll+automatically profit from future optimizations in ByteString.Builder.  For example, if you write: 
type-of-html.cabal view
@@ -1,5 +1,5 @@ name:                 type-of-html-version:              1.3.0.0+version:              1.3.0.1 synopsis:             High performance type driven html generation. description:          This library makes most invalid html documents compile time errors and uses advanced type level features to realise compile time computations. license:              BSD3