diff --git a/CHANGELOG b/CHANGELOG index 9e3a426..a3d1949 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,24 @@ # Changelog +- 0.9.2.0 (2024-03-06) + * Make XHTML5 doctype lowercase + * Add new attributes to (X)HTML5: + - `download` + - `minlength` + - `muted` + - `onkeypress` + - `poster` + - `property` + * Add new elements to (X)HTML5: + - `bdi` + - `data` + - `dialog` + - `picture` + - `s` + - `search` + - `slot` + - `template` + - 0.9.1.2 (2019-10-02) * Bump QuickCheck dependency to 2.13 * Bump containers dependency to 0.6 diff --git a/blaze-html.cabal b/blaze-html.cabal index dcf0487..9206e11 100644 --- a/blaze-html.cabal +++ b/blaze-html.cabal @@ -1,15 +1,15 @@ -Cabal-version: >= 1.8 -Name: blaze-html -Version: 0.9.2.0 -Homepage: http://jaspervdj.be/blaze -Bug-Reports: http://github.com/jaspervdj/blaze-html/issues -License: BSD3 -License-file: LICENSE -Author: Jasper Van der Jeugt, Simon Meier -Maintainer: Jasper Van der Jeugt -Stability: Experimental -Category: Text -Synopsis: A blazingly fast HTML combinator library for Haskell +Cabal-version: >= 1.10 +Name: blaze-html +Version: 0.9.2.0 +Homepage: http://jaspervdj.be/blaze +Bug-Reports: http://github.com/jaspervdj/blaze-html/issues +License: BSD3 +License-file: LICENSE +Author: Jasper Van der Jeugt, Simon Meier +Maintainer: Jasper Van der Jeugt +Stability: Experimental +Category: Text +Synopsis: A blazingly fast HTML combinator library for Haskell Description: A blazingly fast HTML combinator library for the Haskell programming language. The Text.Blaze module is a good @@ -37,8 +37,9 @@ Extra-source-files: src/Util/GenerateHtmlCombinators.hs Library - Hs-source-dirs: src - Ghc-Options: -Wall + Hs-source-dirs: src + Ghc-Options: -Wall + Default-language: Haskell98 Exposed-modules: Text.Blaze.Html @@ -71,10 +72,11 @@ Library text >= 0.10 && < 2.2 Test-suite blaze-html-tests - Type: exitcode-stdio-1.0 - Hs-source-dirs: src tests - Main-is: TestSuite.hs - Ghc-options: -Wall + Type: exitcode-stdio-1.0 + Hs-source-dirs: src tests + Main-is: TestSuite.hs + Ghc-options: -Wall + Default-language: Haskell98 Other-modules: Text.Blaze.Html