File tree Expand file tree Collapse file tree 4 files changed +29
-4
lines changed Expand file tree Collapse file tree 4 files changed +29
-4
lines changed Original file line number Diff line number Diff line change 1919jobs :
2020 linux :
2121 name : Haskell-CI - Linux - ${{ matrix.compiler }}
22- runs-on : ubuntu-20.04
22+ runs-on : ubuntu-latest
2323 timeout-minutes :
2424 60
2525 container :
2828 strategy :
2929 matrix :
3030 include :
31+ - compiler : ghc-9.12.1
32+ compilerKind : ghc
33+ compilerVersion : 9.12.1
34+ setup-method : ghcup
35+ allow-failure : false
36+ - compiler : ghc-9.10.1
37+ compilerKind : ghc
38+ compilerVersion : 9.10.1
39+ setup-method : ghcup
40+ allow-failure : false
41+ - compiler : ghc-9.8.4
42+ compilerKind : ghc
43+ compilerVersion : 9.8.4
44+ setup-method : ghcup
45+ allow-failure : false
3146 - compiler : ghc-9.6.1
3247 compilerKind : ghc
3348 compilerVersion : 9.6.1
Original file line number Diff line number Diff line change 1- ## Version 0.19.0.0
1+ ## Version 0.19.0.0 (31 March 2025)
2+
3+ - Add ` briefHangPoint ` modifier. This allows one to specify the command length
4+ after which the rendering will change from aligned with the end of the
5+ command name to being indented on the next line.
26
37- Add ` parserOptionGroup ` for grouping Options together, similar to command
48 groups. Requires the breaking change of adding the ` propGroup :: OptGroup `
59 field to ` OptProperties ` .
610
11+
712## Version 0.18.1.0 (29 May 2023)
813
914- Change pretty printer layout algorithm used.
Original file line number Diff line number Diff line change 11name : optparse-applicative
2- version : 0.18.1 .0
2+ version : 0.19.0 .0
33synopsis : Utilities and combinators for parsing command line options
44description :
55 optparse-applicative is a haskell library for parsing options
@@ -51,6 +51,9 @@ extra-source-files: CHANGELOG.md
5151homepage : https://github.com/pcapriotti/optparse-applicative
5252bug-reports : https://github.com/pcapriotti/optparse-applicative/issues
5353tested-with :
54+ GHC== 9.12.1
55+ GHC== 9.10.1
56+ GHC== 9.8.4
5457 GHC== 9.6.1
5558 GHC== 9.4.4
5659 GHC== 9.2.7
Original file line number Diff line number Diff line change @@ -182,7 +182,9 @@ searchArg prefs arg =
182182
183183 ArgReader rdr ->
184184 fmap pure . lift . lift $ runReadM (crReader rdr) arg
185- _ -> mzero
185+
186+ _ ->
187+ mzero
186188
187189 where
188190 cmdMatches cs
You can’t perform that action at this time.
0 commit comments