packages feed

csound-expression-dynamic 0.1.3 → 0.1.4

raw patch · 2 files changed

+2/−2 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

csound-expression-dynamic.cabal view
@@ -1,5 +1,5 @@ Name:          csound-expression-dynamic-Version:       0.1.3+Version:       0.1.4 Cabal-Version: >= 1.6 License:       BSD3 License-file:  LICENSE
src/Csound/Dynamic/Build/Numeric.hs view
@@ -54,7 +54,7 @@     exp = unOpt exp (opr1 "exp")     sqrt = unOpt sqrt (opr1 "sqrt")     log = unOpt log (opr1 "log")-    logBase a n = case n of+    logBase n a = case n of         2 -> unOpt (flip logBase 2) (opr1 "logbtwo") a         10 -> unOpt (flip logBase 10) (opr1 "log10") a         b -> log a / log b