packages feed

blaze-markup 0.8.2.2 → 0.8.2.3

raw patch · 3 files changed

+13/−7 lines, 3 filesdep ~QuickCheckdep ~basedep ~tastyPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: QuickCheck, base, tasty

API changes (from Hackage documentation)

- Text.Blaze.Internal: instance (a ~ ()) => Data.String.IsString (Text.Blaze.Internal.MarkupM a)
+ Text.Blaze.Internal: instance (a Data.Type.Equality.~ ()) => Data.String.IsString (Text.Blaze.Internal.MarkupM a)
- Text.Blaze.Internal: AddAttribute :: StaticString -> StaticString -> ChoiceString -> (MarkupM a) -> MarkupM a
+ Text.Blaze.Internal: AddAttribute :: StaticString -> StaticString -> ChoiceString -> MarkupM a -> MarkupM a
- Text.Blaze.Internal: AddCustomAttribute :: ChoiceString -> ChoiceString -> (MarkupM a) -> MarkupM a
+ Text.Blaze.Internal: AddCustomAttribute :: ChoiceString -> ChoiceString -> MarkupM a -> MarkupM a
- Text.Blaze.Internal: Append :: (MarkupM b) -> (MarkupM a) -> MarkupM a
+ Text.Blaze.Internal: Append :: MarkupM b -> MarkupM a -> MarkupM a
- Text.Blaze.Internal: CustomParent :: ChoiceString -> (MarkupM a) -> MarkupM a
+ Text.Blaze.Internal: CustomParent :: ChoiceString -> MarkupM a -> MarkupM a
- Text.Blaze.Internal: Parent :: StaticString -> StaticString -> StaticString -> (MarkupM a) -> MarkupM a
+ Text.Blaze.Internal: Parent :: StaticString -> StaticString -> StaticString -> MarkupM a -> MarkupM a
- Text.Blaze.Internal: StaticString :: String -> String -> ByteString -> Text -> StaticString
+ Text.Blaze.Internal: StaticString :: (String -> String) -> ByteString -> Text -> StaticString

Files

CHANGELOG view
@@ -1,5 +1,10 @@ # Changelog +- 0.8.2.3 (2019-10-02)+    * Bump `base` to 4.13+    * Bump `tasty` to 1.2+    * Bump `QuickCheck` to 2.13+ - 0.8.2.2 (2018-09-25)     * Bump `base` to 4.12     * Bump `containers` to 0.6
blaze-markup.cabal view
@@ -1,5 +1,5 @@ Name:         blaze-markup-Version:      0.8.2.2+Version:      0.8.2.3 Homepage:     http://jaspervdj.be/blaze Bug-Reports:  http://github.com/jaspervdj/blaze-markup/issues License:      BSD3@@ -18,7 +18,8 @@ Build-type:    Simple Cabal-version: >= 1.8 Tested-with:   GHC == 7.8.4, GHC == 7.10.3,-               GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.1+               GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.1,+               GHC == 8.6.3, GHC == 8.8.1  Extra-source-files:   CHANGELOG@@ -36,7 +37,7 @@     Text.Blaze.Renderer.Utf8    Build-depends:-    base          >= 4    && < 4.13,+    base          >= 4    && < 4.14,     blaze-builder >= 0.3  && < 0.5,     text          >= 0.10 && < 1.3,     bytestring    >= 0.9  && < 0.11@@ -59,13 +60,13 @@    Build-depends:     HUnit            >= 1.2  && < 1.7,-    QuickCheck       >= 2.7  && < 2.12,+    QuickCheck       >= 2.7  && < 2.14,     containers       >= 0.3  && < 0.7,-    tasty            >= 1.0  && < 1.2,+    tasty            >= 1.0  && < 1.3,     tasty-hunit      >= 0.10 && < 0.11,     tasty-quickcheck >= 0.10 && < 0.11,     -- Copied from regular dependencies...-    base          >= 4    && < 4.13,+    base          >= 4    && < 4.14,     blaze-builder >= 0.3  && < 0.5,     text          >= 0.10 && < 1.3,     bytestring    >= 0.9  && < 0.11
src/Text/Blaze/Internal.hs view
@@ -8,7 +8,7 @@ {-# LANGUAGE Rank2Types                 #-} -- | The BlazeMarkup core, consisting of functions that offer the power to -- generate custom markup elements. It also offers user-centric functions,--- which are exposed through 'Text.Blaze'.+-- which are exposed through "Text.Blaze". -- -- While this module is exported, usage of it is not recommended, unless you -- know what you are doing. This module might undergo changes at any time.