packages feed

digits 0.1 → 0.2

raw patch · 1 files changed

+3/−3 lines, 1 filesdep ~basePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base

API changes (from Hackage documentation)

- Data.Digits: digits :: (Integral n) => n -> n -> [n]
+ Data.Digits: digits :: Integral n => n -> n -> [n]
- Data.Digits: digitsRev :: (Integral n) => n -> n -> [n]
+ Data.Digits: digitsRev :: Integral n => n -> n -> [n]
- Data.Digits: unDigits :: (Integral n) => n -> [n] -> n
+ Data.Digits: unDigits :: Integral n => n -> [n] -> n

Files

digits.cabal view
@@ -1,7 +1,7 @@ Build-Type: Custom Name: digits Category: Data-Version: 0.1+Version: 0.2 Cabal-Version: >= 1.2 Synopsis: Converts integers to lists of digits and back. Description: Converts integers to lists of digits and back.@@ -10,8 +10,8 @@ Copyright: (c) 2009 Henry Bucklow Author: Henry Bucklow Maintainer: henry@elsie.org.uk-Tested-With: GHC==6.10-Build-Depends: base >= 3 && < 4, QuickCheck+Tested-With: GHC==6.12+Build-Depends: base >= 4 && < 5, QuickCheck Exposed-Modules: Data.Digits Hs-Source-Dirs: src Extra-Source-Files: src/Tests.hs