doctest 0.22.8 → 0.22.9
raw patch · 3 files changed
+8/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGES.markdown +3/−0
- doctest.cabal +2/−2
- src/Interpreter.hs +3/−0
CHANGES.markdown view
@@ -1,3 +1,6 @@+Changes in 0.22.9+ - Use `-fprint-error-index-links=never` for GHC `>=9.10`+ Changes in 0.22.8 - cabal-doctest: Fix handling of options with optional arguments
doctest.cabal view
@@ -1,11 +1,11 @@ cabal-version: 1.12 --- This file has been generated from package.yaml by hpack version 0.36.0.+-- This file has been generated from package.yaml by hpack version 0.37.0. -- -- see: https://github.com/sol/hpack name: doctest-version: 0.22.8+version: 0.22.9 synopsis: Test interactive Haskell examples description: `doctest` is a tool that checks [examples](https://www.haskell.org/haddock/doc/html/ch03s08.html#idm140354810775744) and [properties](https://www.haskell.org/haddock/doc/html/ch03s08.html#idm140354810771856)
src/Interpreter.hs view
@@ -53,6 +53,9 @@ #if __GLASGOW_HASKELL__ >= 810 && __GLASGOW_HASKELL__ < 904 , "-Wno-unused-packages" #endif+#if __GLASGOW_HASKELL__ >= 910+ , "-fprint-error-index-links=never"+#endif ] bracket (new defaultConfig{configGhci = command} args) close action