tostring 0.2.0.1 → 0.2.0.2
raw patch · 4 files changed
+31/−15 lines, 4 filesdep ~textnew-uploader
Dependency ranges changed: text
Files
- CHANGELOG.md +5/−0
- README.md +3/−0
- src/Data/String/ToString.hs +7/−6
- tostring.cabal +16/−9
+ CHANGELOG.md view
@@ -0,0 +1,5 @@+# Changelog++#### 0.2.0.2++* Allow `text 1.2.*`
+ README.md view
@@ -0,0 +1,3 @@+# tostring++[](https://travis-ci.org/silkapp/tostring)
src/Data/String/ToString.hs view
@@ -1,14 +1,15 @@-{-# LANGUAGE TypeSynonymInstances- , FlexibleInstances- #-}+{-# LANGUAGE+ FlexibleInstances+ , TypeSynonymInstances+ #-} module Data.String.ToString ( ToString (..) ) where -import qualified Data.ByteString.UTF8 as SBU import qualified Data.ByteString.Lazy.UTF8 as LBU-import qualified Data.Text as ST-import qualified Data.Text.Lazy as LT+import qualified Data.ByteString.UTF8 as SBU+import qualified Data.Text as ST+import qualified Data.Text.Lazy as LT class ToString a where toString :: a -> String
tostring.cabal view
@@ -1,5 +1,5 @@ name: tostring-version: 0.2.0.1+version: 0.2.0.2 synopsis: The ToString class description: A type class for converting text types to String. license: BSD3@@ -10,13 +10,20 @@ cabal-version: >=1.8 license-file: LICENSE -library- exposed-modules: Data.String.ToString- build-depends: base == 4.*- , utf8-string == 0.3.*- , text >= 0.11 && < 1.2- hs-source-dirs: src+extra-source-files:+ CHANGELOG.md+ LICENSE+ README.md source-repository head- type: Git- location: https://github.com/silkapp/tostring.git+ type: git+ location: https://github.com/silkapp/tostring.git++library+ ghc-options: -Wall+ hs-source-dirs: src+ exposed-modules: Data.String.ToString+ build-depends:+ base == 4.*+ , text >= 0.11 && < 1.3+ , utf8-string == 0.3.*