instance-control 0.1.1.0 → 0.1.1.1
raw patch · 1 files changed
+1/−4 lines, 1 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- Control.Instances.Morph: instance forall k k1 (from :: k1) (to :: k) a b. Control.Instances.Morph.CorrectPath from to (a Control.Instances.Morph.:+: b)
- Control.Instances.Morph: instance forall k k1 (from :: k1) (to :: k). Control.Instances.Morph.CorrectPath from to Control.Instances.Morph.NoMorph
+ Control.Instances.Morph: instance forall k k1 (from :: k) (to :: k1) a b. Control.Instances.Morph.CorrectPath from to (a Control.Instances.Morph.:+: b)
+ Control.Instances.Morph: instance forall k k1 (from :: k) (to :: k1). Control.Instances.Morph.CorrectPath from to Control.Instances.Morph.NoMorph
Files
- instance-control.cabal +1/−4
instance-control.cabal view
@@ -1,6 +1,6 @@ name: instance-control -version: 0.1.1.0 +version: 0.1.1.1 synopsis: Controls how the compiler searches for instances using type families. description: GHC has no capability to perform graph searches on instance definition. Because of that, transitive rules for type classes cannot be defined. This package solves the issue with @@ -13,10 +13,8 @@ license-file: LICENSE author: Boldizsar Nemeth maintainer: nboldi@caesar.elte.hu --- copyright: category: Control build-type: Simple --- extra-source-files: cabal-version: >=1.10 source-repository head type: git @@ -30,5 +28,4 @@ build-depends: base >=4.9 && <5.0 , mtl >=2.2 && <2.3 , transformers >=0.4 && <0.6 - -- hs-source-dirs: default-language: Haskell2010