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 @@ -28,6 +28,8 @@ Behavior changes:
28
28
29
29
Other enhancements:
30
30
31
+ * Consider GHC 9.10 to be a tested compiler and remove warnings.
32
+ * Consider Cabal 3.12 to be a tested library and remove warnings.
31
33
* Add flags ` --run-tests ` and ` --run-benchmarks ` (the existing defaults) to
32
34
Stack's ` build ` command, which take precedence over the existing
33
35
` no-run-tests ` and ` no-run-benchmarks ` configuration options, respectively.
Original file line number Diff line number Diff line change @@ -1050,9 +1050,9 @@ warnUnsupportedCompiler ghcVersion = do
1050
1050
, style Url " https://github.com/commercialhaskell/stack/issues/648" <> " ."
1051
1051
]
1052
1052
pure True
1053
- | ghcVersion >= mkVersion [9 , 9 ] && notifyIfGhcUntested -> do
1053
+ | ghcVersion >= mkVersion [9 , 11 ] && notifyIfGhcUntested -> do
1054
1054
prettyWarnL
1055
- [ flow " Stack has not been tested with GHC versions 9.10 and above, \
1055
+ [ flow " Stack has not been tested with GHC versions 9.12 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 , 11 ] && notifyIfCabalUntested ->
1097
+ | cabalVersion >= mkVersion [3 , 13 ] && notifyIfCabalUntested ->
1098
1098
prettyWarnL
1099
- [ flow " Stack has not been tested with Cabal versions 3.12 and \
1099
+ [ flow " Stack has not been tested with Cabal versions 3.14 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