packages feed

haskell98 1.1.0.0 → 1.1.0.1

raw patch · 1 files changed

+8/−3 lines, 1 filesdep ~arraydep ~directorydep ~old-localePVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: array, directory, old-locale, old-time, process, random

API changes (from Hackage documentation)

- Array: data Ix i => Array i e :: * -> * -> *
+ Array: data Array i e :: * -> * -> *
- Complex: data RealFloat a => Complex a :: * -> *
+ Complex: data Complex a :: * -> *
- Ratio: data Integral a => Ratio a :: * -> *
+ Ratio: data Ratio a :: * -> *

Files

haskell98.cabal view
@@ -1,5 +1,5 @@ name:		haskell98-version:	1.1.0.0+version:	1.1.0.1 license:	BSD3 license-file:	LICENSE maintainer:	libraries@haskell.org@@ -17,8 +17,13 @@ Cabal-Version: >= 1.6  Library-    build-depends:	base >= 3 && < 5,-                    directory, random, old-time, old-locale, process, array+    build-depends:	base        >= 3   && < 5,+                    directory   >= 1.1 && < 1.2,+                    random      >= 1.0 && < 1.1,+                    old-time    >= 1.0 && < 1.1,+                    old-locale  >= 1.0 && < 1.1,+                    process     >= 1.0 && < 1.1,+                    array       >= 0.3 && < 0.4     exposed-modules:         -- Haskell 98 (Prelude and Numeric are in the base package)         Array, CPUTime, Char, Complex, Directory, IO, Ix, List, Locale,