case-insensitive 0.2.0.1 → 0.2.0.2
raw patch · 3 files changed
+14/−6 lines, 3 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- Data/CaseInsensitive.hs +3/−2
- README.markdown +4/−0
- case-insensitive.cabal +7/−4
Data/CaseInsensitive.hs view
@@ -2,6 +2,7 @@ , UnicodeSyntax , TypeSynonymInstances , DeriveDataTypeable+ , FlexibleInstances #-} -----------------------------------------------------------------------------@@ -14,8 +15,8 @@ -- This module is intended to be imported qualified. May I suggest: -- -- @--- import Data.CaseInsensitive ( CI )--- import qualifed Data.CaseInsensitivee as CI+-- import Data.CaseInsensitive ( CI )+-- import qualified Data.CaseInsensitive as CI -- @ -- -----------------------------------------------------------------------------
+ README.markdown view
@@ -0,0 +1,4 @@+The module `Data.CaseInsensitive` provides the `CI` type constructor+which can be parameterised by a string-like type like: `String`,+`ByteString`, `Text`, etc.. Comparisons of values of the resulting+type will be insensitive to cases.
case-insensitive.cabal view
@@ -1,5 +1,5 @@ name: case-insensitive-version: 0.2.0.1+version: 0.2.0.2 cabal-version: >=1.6 build-type: Simple license: BSD3@@ -7,6 +7,7 @@ copyright: 2011 Bas van Dijk author: Bas van Dijk maintainer: Bas van Dijk <v.dijk.bas@gmail.com>+bug-reports: https://github.com/basvandijk/case-insensitive/issues category: Data, Text synopsis: Case insensitive string comparison description: The module @Data.CaseInsensitive@ provides the 'CI' type@@ -15,13 +16,15 @@ etc.. Comparisons of values of the resulting type will be insensitive to cases. +extra-source-files: README.markdown+ source-repository head- Type: darcs- Location: http://code.haskell.org/~basvandijk/code/case-insensitive+ Type: git+ Location: git://github.com/basvandijk/case-insensitive.git Library GHC-Options: -Wall- build-depends: base >= 4 && < 4.4+ build-depends: base >= 3 && < 4.4 , bytestring >= 0.9 && < 0.10 , text >= 0.3 && < 0.12 exposed-modules: Data.CaseInsensitive