conversion 1.1.0.0 → 1.1.0.1
raw patch · 2 files changed
+1/−4 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- conversion.cabal +1/−1
- library/Conversion.hs +0/−3
conversion.cabal view
@@ -1,7 +1,7 @@ name: conversion version:- 1.1.0.0+ 1.1.0.1 synopsis: Universal converter between values of different types category:
library/Conversion.hs view
@@ -7,9 +7,6 @@ -- A type-class, -- which provides a non-partial conversion function from a value of type @a@ -- to a value of type @b@.--- --- As per <http://en.wikipedia.org/wiki/Morphism#Definition the definition of Morphism>,--- @a@ is the /domain/ and @b@ is the /codomain/. class Conversion a b where convert :: a -> b