File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Revision history for patch
22
3+ ## 0.0.4.0
4+
5+ * Enable PolyKinds
6+
37## 0.0.3.2
48
59* Update version bounds
Original file line number Diff line number Diff line change 11Name : patch
2- Version : 0.0.3.2
2+ Version : 0.0.4.0
33Synopsis : Data structures for describing changes to other data structures.
44Description :
55 Data structures for describing changes to other data structures.
@@ -55,6 +55,7 @@ library
5555 , Data.Patch.MapWithPatchingMove
5656
5757 ghc-options : -Wall -fwarn-redundant-constraints -fwarn-tabs
58+ default-extensions : PolyKinds
5859
5960 if flag(split-these)
6061 build-depends : these >= 1 && < 1.2
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ instance Patch (Identity a) where
3030 apply (Identity a) _ = Just a
3131
3232-- | 'Proxy' can be used as a 'Patch' that does nothing.
33- instance Patch (Proxy a ) where
33+ instance Patch (Proxy ( a :: * ) ) where
3434 type PatchTarget (Proxy a ) = a
3535 apply ~ Proxy _ = Nothing
3636
You can’t perform that action at this time.
0 commit comments