synthesizer-core 0.9 → 0.9.0.1
raw patch · 8 files changed
+6/−16 lines, 8 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- src/Synthesizer/CausalIO/Gate.hs +0/−1
- src/Synthesizer/CausalIO/Process.hs +0/−1
- src/Synthesizer/ChunkySize.hs +1/−2
- src/Synthesizer/Generic/LengthSignal.hs +0/−2
- src/Synthesizer/Plain/Builder.hs +1/−2
- src/Synthesizer/State/Signal.hs +0/−2
- src/Synthesizer/Zip.hs +1/−3
- synthesizer-core.cabal +3/−3
src/Synthesizer/CausalIO/Gate.hs view
@@ -67,7 +67,6 @@ instance Mn.Monoid (Chunk a) where mempty = error "Gate.mempty cannot be defined"- mappend = (Sg.<>) instance CutG.Transform (Chunk a) where take n (Chunk dur mrel) =
src/Synthesizer/CausalIO/Process.hs view
@@ -208,7 +208,6 @@ (\ _a () -> return (mempty, ())) (return ()) (\() -> return ())- mappend = append mappend append :: (CutG.Transform a, CutG.Consume b) =>
src/Synthesizer/ChunkySize.hs view
@@ -23,7 +23,7 @@ import qualified Data.StorableVector.Lazy.Pattern as SigStV import qualified Data.List as List-import Data.Monoid (Monoid, mappend, mempty, )+import Data.Monoid (Monoid, mempty, ) import Data.Semigroup (Semigroup, (<>), ) import qualified Test.QuickCheck as QC@@ -54,7 +54,6 @@ instance Monoid LazySize where mempty = LazySize 0- mappend = (<>) instance Monoid.C LazySize where idt = LazySize 0
src/Synthesizer/Generic/LengthSignal.hs view
@@ -41,8 +41,6 @@ instance (Monoid sig) => Monoid (T sig) where mempty = Cons zero mempty- mappend (Cons xl xs) (Cons yl ys) =- Cons (xl+yl) (mappend xs ys) splitAt :: (CutG.Transform sig) => Int -> T sig -> (T sig, T sig) splitAt n (Cons xl xs) =
src/Synthesizer/Plain/Builder.hs view
@@ -5,7 +5,7 @@ import qualified Synthesizer.Basic.Binary as BinSmp -import Data.Monoid (Monoid, mempty, mappend, mconcat, Endo(Endo), appEndo, )+import Data.Monoid (Monoid, mempty, mconcat, Endo(Endo), appEndo, ) import Data.Semigroup (Semigroup, (<>), ) import qualified Algebra.FloatingPoint as Float@@ -27,7 +27,6 @@ instance Monoid (T a) where mempty = Cons mempty- mappend = (<>) put :: Put a put = Cons . Endo . (:)
src/Synthesizer/State/Signal.hs view
@@ -92,7 +92,6 @@ x <*> y = liftA2 ($) x y instance Monad T where- return = singleton x >>= k = runViewL x $ \f s0 -> flip generate (fmap (mapFst k) $ f s0) $ \m ->@@ -860,7 +859,6 @@ instance Monoid (T y) where mempty = empty- mappend = (<>) catMaybes :: T (Maybe a) -> T a
src/Synthesizer/Zip.hs view
@@ -5,7 +5,7 @@ import qualified Control.Arrow as Arrow import Control.Arrow (Arrow, (<<<), (^<<), (<<^), ) -import Data.Monoid (Monoid, mempty, mappend, )+import Data.Monoid (Monoid, mempty, ) import Data.Semigroup (Semigroup, (<>), ) @@ -115,8 +115,6 @@ instance (Monoid a, Monoid b) => Monoid (T a b) where mempty = Cons mempty mempty- mappend (Cons a0 b0) (Cons a1 b1) =- Cons (mappend a0 a1) (mappend b0 b1) instance (CutG.Consume a, CutG.Consume b) => CutG.Consume (T a b) where {-# INLINE null #-}
synthesizer-core.cabal view
@@ -1,5 +1,5 @@ Name: synthesizer-core-Version: 0.9+Version: 0.9.0.1 License: GPL License-File: LICENSE Author: Henning Thielemann <haskell@henning-thielemann.de>@@ -39,7 +39,7 @@ Source-Repository this- Tag: 0.9+ Tag: 0.9.0.1 Type: darcs Location: http://code.haskell.org/synthesizer/core/ @@ -72,7 +72,7 @@ containers >=0.1 && <0.9, random >=1.0 && <1.4, process >=1.0 && <1.7,- base >=4 && <5+ base >=4.11 && <5 If impl(ghc>=7.0) -- also warns about NumericPrelude import: -fwarn-missing-import-lists