File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Revision history for patch
2
2
3
+ ## 0.0.4.0
4
+
5
+ * Enable PolyKinds
6
+
3
7
## 0.0.3.2
4
8
5
9
* Update version bounds
Original file line number Diff line number Diff line change 1
1
Name : patch
2
- Version : 0.0.3.2
2
+ Version : 0.0.4.0
3
3
Synopsis : Data structures for describing changes to other data structures.
4
4
Description :
5
5
Data structures for describing changes to other data structures.
@@ -55,6 +55,7 @@ library
55
55
, Data.Patch.MapWithPatchingMove
56
56
57
57
ghc-options : -Wall -fwarn-redundant-constraints -fwarn-tabs
58
+ default-extensions : PolyKinds
58
59
59
60
if flag(split-these)
60
61
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
30
30
apply (Identity a) _ = Just a
31
31
32
32
-- | 'Proxy' can be used as a 'Patch' that does nothing.
33
- instance Patch (Proxy a ) where
33
+ instance Patch (Proxy ( a :: * ) ) where
34
34
type PatchTarget (Proxy a ) = a
35
35
apply ~ Proxy _ = Nothing
36
36
You can’t perform that action at this time.
0 commit comments