sndfile-enumerators 0.7.0 → 0.8.0
raw patch · 3 files changed
+8/−4 lines, 3 filesdep ~iterateedep ~mutable-iterPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: iteratee, mutable-iter
API changes (from Hackage documentation)
Files
- examples/wave_reader.hs +2/−0
- examples/wave_writer.hs +2/−0
- sndfile-enumerators.cabal +4/−4
examples/wave_reader.hs view
@@ -43,6 +43,8 @@ liftIO . putStrLn $ show maxm return () +-- | As of now (ghc-7.1, mutable-iter-0.6, sndfile-enumerators-0.7)+-- ,this version is as fast as max_iter max_iter2 :: MonadCatchIO m => MIteratee (IOBuffer r Double) m Double max_iter2 = foldl' (flip (max . abs)) 0
examples/wave_writer.hs view
@@ -1,6 +1,8 @@ -- Copy data from one file to another+-- compile with -funfolding-use-threshold=64 {-# LANGUAGE BangPatterns #-}+ module Main where import Data.MutableIter
sndfile-enumerators.cabal view
@@ -1,5 +1,5 @@ Name: sndfile-enumerators-Version: 0.7.0+Version: 0.8.0 Cabal-Version: >= 1.2 Description: encode and decode soundfiles using Iteratees. Audio files may be read or written, with classes and @@ -9,7 +9,7 @@ License-file: LICENSE Author: John W. Lato, jwlato@gmail.com Maintainer: John W. Lato, jwlato@gmail.com-homepage: http://tanimoto.us/~jwlato/haskell/sndfile-enumerators+homepage: http://jwlato.webfactional.com/haskell/sndfile-enumerators Stability: experimental synopsis: Audio file reading/writing category: Codec, Sound@@ -36,10 +36,10 @@ binary >= 0.5 && < 0.6, containers >= 0.2 && < 0.5, transformers >= 0.2 && < 0.3,- iteratee >= 0.4 && < 0.8,+ iteratee >= 0.4 && < 0.9, bytestring >= 0.9.1 && < 0.10, word24 >= 0.1 && < 0.2,- mutable-iter >= 0.1 && < 0.6,+ mutable-iter >= 0.1 && < 0.7, MonadCatchIO-transformers >= 0.2 && < 0.3 exposed-modules: Sound.Iteratee