cast 0.1.0.1 → 0.1.0.2
raw patch · 2 files changed
+3/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- cast.cabal +2/−2
- src/Pattern/Cast.hs +1/−0
cast.cabal view
@@ -1,8 +1,8 @@ name: cast-version: 0.1.0.1+version: 0.1.0.2 synopsis: Abstact cast pattern description:- Generelized pattern that allow cast one type for another.+ Generalized pattern that allow cast one type for another. Look at README for example. homepage: https://github.com/haskell-patterns/cast#readme
src/Pattern/Cast.hs view
@@ -5,6 +5,7 @@ ( Cast (..) ) where +-- | The 'Cast' describes values that can be converted from one type to another class Cast a b where cast :: a -> b