atom 1.0.1 → 1.0.2
raw patch · 3 files changed
+6/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Language/Atom/Common.hs +1/−1
- RELEASE-NOTES +4/−0
- atom.cabal +1/−1
Language/Atom/Common.hs view
@@ -96,7 +96,7 @@ linear :: FloatingE a => (E a, E a) -> (E a, E a) -> E a -> E a linear (x1, y1) (x2, y2) a = slope * a + inter where- slope = y2 - y1 / x2 - x1+ slope = (y2 - y1) / (x2 - x1) inter = y1 - slope * x1 -- | Hysteresis returns 'True' when the input exceeds @max@ and 'False' when
RELEASE-NOTES view
@@ -1,3 +1,7 @@+atom 1.0.2 04/13/2010++- Fixed linear bug.+ atom 1.0.1 03/17/2010 - Fixed debounce bug.
atom.cabal view
@@ -1,5 +1,5 @@ name: atom-version: 1.0.1+version: 1.0.2 category: Language