first-class-families 0.3.0.0 → 0.3.0.1
raw patch · 3 files changed
+7/−3 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- first-class-families.cabal +2/−2
- src/Fcf.hs +1/−1
CHANGELOG.md view
@@ -1,3 +1,7 @@+# 0.3.0.1++- GHC 8.6 compatibility+ # 0.3.0.0 - More new functions, thanks to isovector
first-class-families.cabal view
@@ -1,5 +1,5 @@ name: first-class-families-version: 0.3.0.0+version: 0.3.0.1 synopsis: First class type families description:@@ -18,7 +18,7 @@ extra-source-files: README.md, CHANGELOG.md cabal-version: >=1.10 tested-with:- GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.3+ GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.3, GHC == 8.6.1 library hs-source-dirs: src
src/Fcf.hs view
@@ -303,7 +303,7 @@ type instance Eval ((-) a b) = a TL.- b data (*) :: Nat -> Nat -> Exp Nat-type instance Eval ((*) a b) = a TL.* b+type instance Eval ((Fcf.*) a b) = a TL.* b data (^) :: Nat -> Nat -> Exp Nat type instance Eval ((^) a b) = a TL.^ b