File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -1333,10 +1333,12 @@ The following flags are supported by the ``outdated`` command:
1333
1333
``--freeze-file ``
1334
1334
Read dependency version bounds from the freeze file (``cabal.config ``)
1335
1335
instead of the package description file (``$PACKAGENAME.cabal ``).
1336
+ ``--v1-freeze-file `` is an alias for this flag starting in Cabal 2.4.
1336
1337
``--new-freeze-file ``
1337
1338
Read dependency version bounds from the new-style freeze file
1338
1339
(by default, ``cabal.project.freeze ``) instead of the package
1339
- description file.
1340
+ description file. ``--v2-freeze-file `` is an alias for this flag
1341
+ starting in Cabal 2.4.
1340
1342
``--project-file `` *PROJECTFILE *
1341
1343
:since: 2.4
1342
1344
Original file line number Diff line number Diff line change @@ -1166,12 +1166,12 @@ outdatedCommand = CommandUI {
1166
1166
optionVerbosity outdatedVerbosity
1167
1167
(\ v flags -> flags { outdatedVerbosity = v })
1168
1168
1169
- ,option [] [" freeze-file" ]
1169
+ ,option [] [" freeze-file" , " v1-freeze-file " ]
1170
1170
" Act on the freeze file"
1171
1171
outdatedFreezeFile (\ v flags -> flags { outdatedFreezeFile = v })
1172
1172
trueArg
1173
1173
1174
- ,option [] [" new-freeze-file" ]
1174
+ ,option [] [" new-freeze-file" , " v2-freeze-file " ]
1175
1175
" Act on the new-style freeze file (default: cabal.project.freeze)"
1176
1176
outdatedNewFreezeFile (\ v flags -> flags { outdatedNewFreezeFile = v })
1177
1177
trueArg
Original file line number Diff line number Diff line change 31
31
* Add 'v1-' prefixes for the commands that will be replaced in the
32
32
new-build universe, in preparation for it becoming the default.
33
33
(#5358)
34
+ * 'outdated' accepts '--v1-freeze-file' and '--v2-freeze-file'
35
+ in the same spirit.
34
36
* Completed the 'new-clean' command (#5357). The functionality is
35
37
equivalent to old-style clean, but for nix-style builds.
36
38
* Ensure that each package selected for a build-depends dependency
You can’t perform that action at this time.
0 commit comments