Hello community,

here is the log from the commit of package ghc-blaze-html for openSUSE:Factory 
checked in at 2015-08-05 06:51:53
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-blaze-html (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-blaze-html.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-blaze-html"

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-blaze-html/ghc-blaze-html.changes    
2015-05-21 08:35:18.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-blaze-html.new/ghc-blaze-html.changes       
2015-08-05 06:51:57.000000000 +0200
@@ -1,0 +2,6 @@
+Tue Aug  4 05:32:55 UTC 2015 - mimi...@gmail.com
+
+- update to 0.8.1.0
+* Add `<main>` element to HTML5
+
+-------------------------------------------------------------------

Old:
----
  blaze-html-0.8.0.2.tar.gz

New:
----
  blaze-html-0.8.1.0.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ghc-blaze-html.spec ++++++
--- /var/tmp/diff_new_pack.0PyiM1/_old  2015-08-05 06:51:57.000000000 +0200
+++ /var/tmp/diff_new_pack.0PyiM1/_new  2015-08-05 06:51:57.000000000 +0200
@@ -19,7 +19,7 @@
 %global pkg_name blaze-html
 
 Name:           ghc-blaze-html
-Version:        0.8.0.2
+Version:        0.8.1.0
 Release:        0
 Summary:        A blazingly fast HTML combinator library for Haskell
 License:        BSD-3-Clause

++++++ blaze-html-0.8.0.2.tar.gz -> blaze-html-0.8.1.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/blaze-html-0.8.0.2/CHANGELOG 
new/blaze-html-0.8.1.0/CHANGELOG
--- old/blaze-html-0.8.0.2/CHANGELOG    2015-03-23 10:38:58.000000000 +0100
+++ new/blaze-html-0.8.1.0/CHANGELOG    2015-08-01 10:03:37.000000000 +0200
@@ -1,3 +1,6 @@
+- 0.8.1.0
+    * Add `<main>` element to HTML5
+
 - 0.8.0.2
     * Relax blaze-builder dependency to include 0.3 again
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/blaze-html-0.8.0.2/blaze-html.cabal 
new/blaze-html-0.8.1.0/blaze-html.cabal
--- old/blaze-html-0.8.0.2/blaze-html.cabal     2015-03-23 10:38:58.000000000 
+0100
+++ new/blaze-html-0.8.1.0/blaze-html.cabal     2015-08-01 10:03:37.000000000 
+0200
@@ -1,5 +1,5 @@
 Name:         blaze-html
-Version:      0.8.0.2
+Version:      0.8.1.0
 Homepage:     http://jaspervdj.be/blaze
 Bug-Reports:  http://github.com/jaspervdj/blaze-html/issues
 License:      BSD3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/blaze-html-0.8.0.2/src/Text/Blaze/Html5.hs 
new/blaze-html-0.8.1.0/src/Text/Blaze/Html5.hs
--- old/blaze-html-0.8.0.2/src/Text/Blaze/Html5.hs      2015-03-23 
10:38:58.000000000 +0100
+++ new/blaze-html-0.8.1.0/src/Text/Blaze/Html5.hs      2015-08-01 
10:03:37.000000000 +0200
@@ -66,6 +66,7 @@
     , legend
     , li
     , link
+    , main
     , map
     , mark
     , menu
@@ -1199,6 +1200,24 @@
 
 -- WARNING: The next block of code was automatically generated by
 -- src/Util/GenerateHtmlCombinators.hs:199
+--
+-- | Combinator for the @\<main>@ element.
+--
+-- Example:
+--
+-- > main $ span $ toHtml "foo"
+--
+-- Result:
+--
+-- > <main><span>foo</span></main>
+--
+main :: Html  -- ^ Inner HTML.
+     -> Html  -- ^ Resulting HTML.
+main = Parent "main" "<main" "</main>"
+{-# INLINE main #-}
+
+-- WARNING: The next block of code was automatically generated by
+-- src/Util/GenerateHtmlCombinators.hs:199
 --
 -- | Combinator for the @\<map>@ element.
 --
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/blaze-html-0.8.0.2/src/Text/Blaze/XHtml5.hs 
new/blaze-html-0.8.1.0/src/Text/Blaze/XHtml5.hs
--- old/blaze-html-0.8.0.2/src/Text/Blaze/XHtml5.hs     2015-03-23 
10:38:58.000000000 +0100
+++ new/blaze-html-0.8.1.0/src/Text/Blaze/XHtml5.hs     2015-08-01 
10:03:37.000000000 +0200
@@ -66,6 +66,7 @@
     , legend
     , li
     , link
+    , main
     , map
     , mark
     , menu
@@ -1199,6 +1200,24 @@
 
 -- WARNING: The next block of code was automatically generated by
 -- src/Util/GenerateHtmlCombinators.hs:199
+--
+-- | Combinator for the @\<main>@ element.
+--
+-- Example:
+--
+-- > main $ span $ toHtml "foo"
+--
+-- Result:
+--
+-- > <main><span>foo</span></main>
+--
+main :: Html  -- ^ Inner HTML.
+     -> Html  -- ^ Resulting HTML.
+main = Parent "main" "<main" "</main>"
+{-# INLINE main #-}
+
+-- WARNING: The next block of code was automatically generated by
+-- src/Util/GenerateHtmlCombinators.hs:199
 --
 -- | Combinator for the @\<map>@ element.
 --
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/blaze-html-0.8.0.2/src/Util/GenerateHtmlCombinators.hs 
new/blaze-html-0.8.1.0/src/Util/GenerateHtmlCombinators.hs
--- old/blaze-html-0.8.0.2/src/Util/GenerateHtmlCombinators.hs  2015-03-23 
10:38:58.000000000 +0100
+++ new/blaze-html-0.8.1.0/src/Util/GenerateHtmlCombinators.hs  2015-08-01 
10:03:37.000000000 +0200
@@ -407,12 +407,12 @@
         , "dfn", "div", "dl", "dt", "em", "fieldset", "figcaption", "figure"
         , "footer", "form", "h1", "h2", "h3", "h4", "h5", "h6", "head", 
"header"
         , "hgroup", "html", "i", "iframe", "ins", "kbd", "label"
-        , "legend", "li", "map", "mark", "menu", "meter", "nav", "noscript"
-        , "object", "ol", "optgroup", "option", "output", "p", "pre", 
"progress"
-        , "q", "rp", "rt", "ruby", "samp", "script", "section", "select"
-        , "small", "span", "strong", "style", "sub", "summary", "sup"
-        , "table", "tbody", "td", "textarea", "tfoot", "th", "thead", "time"
-        , "title", "tr", "ul", "var", "video"
+        , "legend", "li", "main", "map", "mark", "menu", "meter", "nav"
+        , "noscript", "object", "ol", "optgroup", "option", "output", "p"
+        , "pre", "progress", "q", "rp", "rt", "ruby", "samp", "script"
+        , "section", "select", "small", "span", "strong", "style", "sub"
+        , "summary", "sup", "table", "tbody", "td", "textarea", "tfoot", "th"
+        , "thead", "time", "title", "tr", "ul", "var", "video"
         ]
     , leafs =
         -- 
http://www.whatwg.org/specs/web-apps/current-work/multipage/syntax.html#void-elements


Reply via email to