category 0.2.2.0 → 0.2.3.0
raw patch · 3 files changed
+4/−3 lines, 3 filessetup-changedPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ Control.Categorical.Functor: instance forall β α (s :: α -> α -> *) (t :: β -> β -> *) (f :: α -> β). Control.Categorical.Functor.Functor s t f => Control.Categorical.Functor.Functor (Control.Category.Dual.Dual s) (Control.Category.Dual.Dual t) f
Files
- Control/Categorical/Functor.hs +3/−0
- Setup.hs +0/−2
- category.cabal +1/−1
Control/Categorical/Functor.hs view
@@ -98,3 +98,6 @@ instance Category s => Functor (Dual s) (NT (->)) s where map (Dual f) = NT (. f)++instance Functor s t f => Functor (Dual s) (Dual t) f where+ map (Dual f) = Dual (map f)
− Setup.hs
@@ -1,2 +0,0 @@-import Distribution.Simple-main = defaultMain
category.cabal view
@@ -1,5 +1,5 @@ name: category-version: 0.2.2.0+version: 0.2.3.0 synopsis: Categorical types and classes -- description: license: BSD3