1
1
Name : patch
2
- Version : 0.0.8.1
2
+ Version : 0.0.8.2
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.
@@ -22,7 +22,7 @@ extra-source-files:
22
22
ChangeLog.md
23
23
24
24
tested-with :
25
- GHC == 8.4.4 || == 8.6.5 || == 8.8.4 || == 8.10.7 || == 9.0.1 || == 9.2.5 || == 9.4.3
25
+ GHC == 8.4.4 || == 8.6.5 || == 8.8.4 || == 8.10.7 || == 9.0.1 || == 9.2.5 || == 9.4.5 || == 9.6.1
26
26
GHCJS == 8.6 || == 8.10
27
27
28
28
flag split-these
@@ -37,19 +37,19 @@ flag hlint
37
37
library
38
38
hs-source-dirs : src
39
39
default-language : Haskell2010
40
- build-depends : base >= 4.9 && < 4.18
40
+ build-depends : base >= 4.9 && < 4.19
41
41
, constraints-extras >= 0.3 && < 0.5
42
42
, commutative-semigroups >= 0.0 && < 0.2
43
43
, containers >= 0.6 && < 0.7
44
44
, dependent-map >= 0.3 && < 0.5
45
45
, dependent-sum >= 0.6 && < 0.8
46
46
, lens >= 4.7 && < 5.3
47
47
, indexed-traversable >= 0.1 && < 0.2
48
- , semigroupoids >= 4.0 && < 6
48
+ , semigroupoids >= 4.0 && < 7
49
49
, transformers >= 0.5.6.0 && < 0.7
50
50
, witherable >= 0.3 && < 0.5
51
51
52
- if impl(ghc < 8.6 ) -- really, if base < 8.12
52
+ if impl(ghc < 8.6 )
53
53
build-depends : base-orphans >= 0.8 && < 0.9
54
54
55
55
exposed-modules : Data.Functor.Misc
@@ -69,8 +69,8 @@ library
69
69
default-extensions : PolyKinds
70
70
71
71
if flag(split-these)
72
- build-depends : these >= 1 && < 1.2
73
- , semialign >= 1 && < 1.3
72
+ build-depends : these >= 1 && < 1.3
73
+ , semialign >= 1 && < 1.4
74
74
, monoidal-containers >= 0.6 && < 0.7
75
75
else
76
76
build-depends : these >= 0.4 && < 0.9
@@ -90,6 +90,9 @@ test-suite tests
90
90
buildable : False
91
91
92
92
test-suite hlint
93
+ -- hlint doesn't support ghc-9.6 yet (as of version 3.5)
94
+ if impl(ghc >= 9.6 )
95
+ buildable : False
93
96
default-language : Haskell2010
94
97
type : exitcode-stdio-1.0
95
98
main-is : hlint.hs
0 commit comments