packages feed

repa-io 3.4.0.2 → 3.4.1.1

raw patch · 1 files changed

+10/−10 lines, 1 filesdep ~basedep ~binarydep ~vectorPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: base, binary, vector

API changes (from Hackage documentation)

- Data.Array.Repa.IO.Binary: readArrayFromStorableFile :: (Shape sh, Storable a) => FilePath -> sh -> IO (Array F sh a)
+ Data.Array.Repa.IO.Binary: readArrayFromStorableFile :: forall a sh. (Shape sh, Storable a) => FilePath -> sh -> IO (Array F sh a)
- Data.Array.Repa.IO.Binary: writeArrayToStorableFile :: (Shape sh, Source r a, Storable a) => FilePath -> Array r sh a -> IO ()
+ Data.Array.Repa.IO.Binary: writeArrayToStorableFile :: forall sh a r. (Shape sh, Source r a, Storable a) => FilePath -> Array r sh a -> IO ()

Files

repa-io.cabal view
@@ -1,5 +1,5 @@ Name:                repa-io-Version:             3.4.0.2+Version:             3.4.1.1 License:             BSD3 License-file:        LICENSE Author:              The DPH Team@@ -17,14 +17,14 @@         Read and write Repa arrays in various formats.  Library-  Build-Depends: -        base                 == 4.8.*,-        vector               == 0.11.*,-        binary               == 0.7.*,-        old-time             == 1.1.*,-        bytestring           == 0.10.*,-        repa                 == 3.4.*,-        bmp                  == 1.2.*+  Build-Depends:+        base                 >= 4.8 && < 4.10+      , binary               >= 0.7 && < 0.9+      , bmp                  == 1.2.*+      , bytestring           == 0.10.*+      , old-time             == 1.1.*+      , repa                 == 3.4.*+      , vector               == 0.11.*    ghc-options:         -O2 -Wall -fno-warn-missing-signatures@@ -35,6 +35,6 @@         Data.Array.Repa.IO.Matrix         Data.Array.Repa.IO.Timing         Data.Array.Repa.IO.Vector-      +   Other-modules:         Data.Array.Repa.IO.Internals.Text