Skip to content

Commit 503f31f

Browse files
authored
list outdated kwarg of Pkg.status (#3013)
1 parent 2c2a93f commit 503f31f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Pkg.jl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,12 +399,13 @@ from packages that are tracking a path.
399399
const resolve = API.resolve
400400

401401
"""
402-
Pkg.status([pkgs...]; mode::PackageMode=PKGMODE_PROJECT, diff::Bool=false, compat::Bool=false, io::IO=stdout)
402+
Pkg.status([pkgs...]; outdated::Bool=false, mode::PackageMode=PKGMODE_PROJECT, diff::Bool=false, compat::Bool=false, io::IO=stdout)
403403
404404
Print out the status of the project/manifest.
405405
406406
Packages marked with `⌃` have new versions that can be installed, e.g. via [`Pkg.up`](@ref).
407-
Those marked with `⌅` have new versions available, but that cannot be installed. To see why use the `outdated` kwarg.
407+
Those marked with `⌅` have new versions available, but cannot be installed due to compatibility conflicts with other packages. To see why, set the
408+
keyword argument `outdated=true`.
408409
409410
Setting `outdated=true` will only show packages that are not on the latest version,
410411
their maximum version and why they are not on the latest version (either due to other

0 commit comments

Comments
 (0)