blaze-textual 0.2.0.4 → 0.2.0.5
raw patch · 5 files changed
+16/−16 lines, 5 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- Blaze.Text: integral :: Integral a => a -> Builder
+ Blaze.Text: integral :: (Integral a, Show a) => a -> Builder
- Blaze.Text.Int: integral :: Integral a => a -> Builder
+ Blaze.Text.Int: integral :: (Integral a, Show a) => a -> Builder
Files
- Blaze/Text/Double.hs +1/−1
- Blaze/Text/Double/Native.hs +1/−1
- Blaze/Text/Int.hs +2/−2
- README.markdown +4/−4
- blaze-textual.cabal +8/−8
Blaze/Text/Double.hs view
@@ -3,7 +3,7 @@ -- Module: Blaze.Text.Double -- Copyright: (c) 2011 MailRank, Inc. -- License: BSD3--- Maintainer: Bryan O'Sullivan <bos@mailrank.com>+-- Maintainer: Bryan O'Sullivan <bos@serpentine.com> -- Stability: experimental -- Portability: portable --
Blaze/Text/Double/Native.hs view
@@ -3,7 +3,7 @@ -- Module: Blaze.Text.Double.Native -- Copyright: (c) 2011 MailRank, Inc. -- License: BSD3--- Maintainer: Bryan O'Sullivan <bos@mailrank.com>+-- Maintainer: Bryan O'Sullivan <bos@serpentine.com> -- Stability: experimental -- Portability: portable --
Blaze/Text/Int.hs view
@@ -3,7 +3,7 @@ -- Module: Blaze.Text.Int -- Copyright: (c) 2011 MailRank, Inc. -- License: BSD3--- Maintainer: Bryan O'Sullivan <bos@mailrank.com>+-- Maintainer: Bryan O'Sullivan <bos@serpentine.com> -- Stability: experimental -- Portability: portable --@@ -40,7 +40,7 @@ # define PAIR(a,b) (a,b) #endif -integral :: Integral a => a -> Builder+integral :: (Integral a, Show a) => a -> Builder {-# RULES "integral/Int" integral = bounded :: Int -> Builder #-} {-# RULES "integral/Int8" integral = bounded :: Int8 -> Builder #-} {-# RULES "integral/Int16" integral = bounded :: Int16 -> Builder #-}
README.markdown view
@@ -53,11 +53,11 @@ enhancements, and other improvements. Please report bugs via the-[github issue tracker](http://github.com/mailrank/blaze-textual/issues).+[github issue tracker](http://github.com/bos/blaze-textual/issues). -Master [git repository](http://github.com/mailrank/blaze-textual):+Master [git repository](http://github.com/bos/blaze-textual): -* `git clone git://github.com/mailrank/blaze-textual.git`+* `git clone git://github.com/bos/blaze-textual.git` There's also a [Mercurial mirror](http://bitbucket.org/bos/blaze-textual): @@ -69,4 +69,4 @@ ------- This library is written and maintained by Bryan O'Sullivan,-<bos@mailrank.com>.+<bos@serpentine.com>.
blaze-textual.cabal view
@@ -1,16 +1,16 @@ name: blaze-textual-version: 0.2.0.4+version: 0.2.0.5 license: BSD3 license-file: LICENSE category: Text copyright: Copyright 2011 MailRank, Inc.-author: Bryan O'Sullivan <bos@mailrank.com>-maintainer: Bryan O'Sullivan <bos@mailrank.com>+author: Bryan O'Sullivan <bos@serpentine.com>+maintainer: Bryan O'Sullivan <bos@serpentine.com> stability: experimental synopsis: Fast rendering of common datatypes cabal-version: >= 1.8-homepage: http://github.com/mailrank/blaze-textual-bug-reports: http://github.com/mailrank/blaze-textual/issues+homepage: http://github.com/bos/blaze-textual+bug-reports: http://github.com/bos/blaze-textual/issues build-type: Simple description: A library for efficiently rendering Haskell datatypes to@@ -19,7 +19,7 @@ /Note/: if you use GHCi or Template Haskell, please see the @README@ file for important details about building this package, and other packages that depend on it:- <https://github.com/mailrank/blaze-textual#readme>+ <https://github.com/bos/blaze-textual#readme> extra-source-files: README.markdown@@ -31,7 +31,7 @@ flag native description: use slow native code for double conversion- default: False+ default: True library exposed-modules:@@ -90,7 +90,7 @@ source-repository head type: git- location: http://github.com/mailrank/blaze-textual+ location: http://github.com/bos/blaze-textual source-repository head type: mercurial