notzero 0.0.5 → 0.0.6
raw patch · 3 files changed
+6/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- changelog +4/−0
- notzero.cabal +1/−1
- src/Data/NotZero.hs +1/−1
changelog view
@@ -1,3 +1,7 @@+0.0.6++* Fix bug in `notZeroElse`.+ 0.0.5 * Changed `notZero1` to just be the value 1.
notzero.cabal view
@@ -1,5 +1,5 @@ name: notzero-version: 0.0.5+version: 0.0.6 license: BSD3 license-file: LICENSE author: Tony Morris <ʇǝu˙sıɹɹoɯʇ@ןןǝʞsɐɥ> <dibblego>
src/Data/NotZero.hs view
@@ -39,7 +39,7 @@ -> a -> NotZero a notZeroElse d a =- NotZero (bool 1 d (a == 0))+ NotZero (bool a d (a == 0)) notZero1 :: (Eq a, Num a) =>