File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Revision history for patch
2
2
3
+ ## Unreleased
4
+
5
+ * Support GHC 9.2
6
+
3
7
## 0.0.5.2 - 2022-01-09
4
8
5
9
* Correct field order of ` PatchMapWithMove.NodeInfo ` .
Original file line number Diff line number Diff line change @@ -33,12 +33,12 @@ flag split-these
33
33
library
34
34
hs-source-dirs : src
35
35
default-language : Haskell2010
36
- build-depends : base >= 4.9 && < 4.16
36
+ build-depends : base >= 4.9 && < 4.17
37
37
, constraints-extras >= 0.3 && < 0.4
38
38
, containers >= 0.6 && < 0.7
39
39
, dependent-map >= 0.3 && < 0.5
40
40
, dependent-sum >= 0.6 && < 0.8
41
- , lens >= 4.7 && < 5.1
41
+ , lens >= 4.7 && < 5.2
42
42
, indexed-traversable >= 0.1 && < 0.2
43
43
, semigroupoids >= 4.0 && < 6
44
44
, transformers >= 0.5.6.0 && < 0.6
Original file line number Diff line number Diff line change @@ -69,8 +69,10 @@ instance DecidablyEmpty (First a) where
69
69
instance DecidablyEmpty (Last a ) where
70
70
isEmpty (Last a) = isNothing a
71
71
deriving instance DecidablyEmpty a => DecidablyEmpty (Identity a )
72
+ #if !MIN_VERSION_base(4,16,0)
72
73
instance Semigroup a => DecidablyEmpty (Option a ) where
73
74
isEmpty (Option a) = isNothing a
75
+ #endif
74
76
deriving instance DecidablyEmpty m => DecidablyEmpty (WrappedMonoid m )
75
77
instance (Ord a , Bounded a ) => DecidablyEmpty (Max a )
76
78
instance (Ord a , Bounded a ) => DecidablyEmpty (Min a )
You can’t perform that action at this time.
0 commit comments