File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,8 @@ Behavior changes:
22
22
23
23
Other enhancements:
24
24
25
+ * Consider GHC 9.12 to be a tested compiler and remove warnings.
26
+ * Consider Cabal 3.14 to be a tested library and remove warnings.
25
27
* From GHC 9.12.1, ` base ` is not a GHC wired-in package. In configuration files,
26
28
the ` notify-if-base-not-boot ` key is introduced, to allow the exisitng
27
29
notification to be muted if unwanted when using such GHC versions.
Original file line number Diff line number Diff line change @@ -1050,9 +1050,9 @@ warnUnsupportedCompiler ghcVersion = do
1050
1050
, flow " Valiantly attempting to run anyway, but this is doomed."
1051
1051
]
1052
1052
pure True
1053
- | ghcVersion >= mkVersion [9 , 11 ] && notifyIfGhcUntested -> do
1053
+ | ghcVersion >= mkVersion [9 , 13 ] && notifyIfGhcUntested -> do
1054
1054
prettyWarnL
1055
- [ flow " Stack has not been tested with GHC versions 9.12 and above, \
1055
+ [ flow " Stack has not been tested with GHC versions 9.14 and above, \
1056
1056
\and using"
1057
1057
, fromString (versionString ghcVersion) <> " ,"
1058
1058
, flow " this may fail."
@@ -1094,9 +1094,9 @@ warnUnsupportedCompilerCabal cp didWarn = do
1094
1094
, parens (style Shell " nightly-2018-03-13" )
1095
1095
, flow " or later specify such GHC versions."
1096
1096
]
1097
- | cabalVersion >= mkVersion [3 , 13 ] && notifyIfCabalUntested ->
1097
+ | cabalVersion >= mkVersion [3 , 15 ] && notifyIfCabalUntested ->
1098
1098
prettyWarnL
1099
- [ flow " Stack has not been tested with Cabal versions 3.14 and \
1099
+ [ flow " Stack has not been tested with Cabal versions 3.16 and \
1100
1100
\above, but version"
1101
1101
, fromString (versionString cabalVersion)
1102
1102
, flow " was found, this may fail."
You can’t perform that action at this time.
0 commit comments