mustache 0.4.0.0 → 0.4.0.1
raw patch · 3 files changed
+8/−4 lines, 3 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- Text.Mustache.Types: instance Text.Mustache.Types.ToMustache [GHC.Types.Char]
+ Text.Mustache.Types: instance Text.Mustache.Types.ToMustache GHC.Base.String
Files
- CHANGELOG.md +4/−0
- mustache.cabal +2/−2
- src/lib/Text/Mustache/Types.hs +2/−2
CHANGELOG.md view
@@ -1,5 +1,9 @@ # Mustache library changelog +## v0.4.0.1rc-5++- Added a necessary OVERLAPPABLE pragma+ ## v0.4.0.0rc-4 (current stable version) - Removed `conversion` and `conversion-text` dependency.
mustache.cabal view
@@ -1,5 +1,5 @@ name: mustache-version: 0.4.0.0+version: 0.4.0.1 synopsis: A mustache template parser library. description: Allows parsing and rendering template files with mustache markup. See the@@ -30,7 +30,7 @@ type: git branch: master location: git://github.com/JustusAdam/mustache.git- tag: v0.4.0.0rc-4+ tag: v0.4.0.1rc-5
src/lib/Text/Mustache/Types.hs view
@@ -107,7 +107,7 @@ instance ToMustache Value where toMustache = id -instance ToMustache [Char] where+instance ToMustache String where toMustache = toMustache ∘ pack instance ToMustache Bool where@@ -125,7 +125,7 @@ instance ToMustache Scientific where toMustache = Number -instance ToMustache ω ⇒ ToMustache [ω] where+instance {-# OVERLAPPABLE #-} ToMustache ω ⇒ ToMustache [ω] where toMustache = Array ∘ V.fromList ∘ fmap toMustache instance ToMustache ω ⇒ ToMustache (V.Vector ω) where