packages feed

html5-entity 0.2.0.2 → 0.2.0.3

raw patch · 2 files changed

+9/−4 lines, 2 filesdep ~basePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base

API changes (from Hackage documentation)

Files

README.md view
@@ -1,6 +1,11 @@ # HTML5-entity   A library for looking up and validating HTML5 entities.++[![Travis build](https://travis-ci.org/zudov/html5-entity.svg?branch=master)](https://travis-ci.org/zudov/html5-entity) [![Hackage](https://img.shields.io/hackage/v/html5-entity.svg)](https://hackage.haskell.org/package/html5-entity)+++ The [following](http://html.spec.whatwg.org/multipage/entities.json) document is used as an authoritative source of the valid entity names and their corresponding codepoints.@@ -8,5 +13,5 @@ You can think of the library as about bindings to the data in that file. -For usage see documentation on [Hackage](https://hackage.haskell.org/package/html5-entity/docs/Text-Html5-Entity.html)+For usage see documentation on [Hackage](https://hackage.haskell.org/package/html5-entity/docs/Text-Html-Entity.html) 
html5-entity.cabal view
@@ -1,5 +1,5 @@ name:                html5-entity-version:             0.2.0.2+version:             0.2.0.3 synopsis:            A library for looking up and validating HTML5 entities. description:         A library for looking up and validating HTML5 entities.                      The <http://html.spec.whatwg.org/multipage/entities.json following>@@ -25,7 +25,7 @@ library   exposed-modules:     Text.Html.Entity                        Text.Html.Entity.Data-  build-depends:       base >=4.5 && < 4.8+  build-depends:       base >=4.0 && < 5.0                      , text                      , containers   hs-source-dirs:      src/@@ -39,7 +39,7 @@ executable html5-entity-generate   if flag(generator)     buildable: True-    build-depends:       base >= 4.5 && < 4.8+    build-depends:       base >= 4.0 && < 5.0                        , text                        , unordered-containers                        , haskell-src