Skip to content

Commit

Permalink
list outdated kwarg of Pkg.status (#3013)
Browse files Browse the repository at this point in the history
  • Loading branch information
ranocha committed Mar 2, 2022
1 parent 2c2a93f commit 503f31f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Pkg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -399,12 +399,13 @@ from packages that are tracking a path.
const resolve = API.resolve

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

0 comments on commit 503f31f

Please sign in to comment.