Finding installed Julia version with Juliaup

Agree that the output from juliaup status is not self-explanatory about the versions installed and pinging @davidanthoff should help clarifying.

Regarding:

Before juliaup update had here on Win10’s powershell:

> juliaup status
Installed Julia channels (default marked with *):
     release
     beta (Update from 1.7.0-rc2+0~x64 to 1.7.0-rc3+0~x64 available)
  *  1.6

And after update:

> juliaup update
Installing Julia 1.7.0-rc3+0 (x64).
> juliaup status
Installed Julia channels (default marked with *):
  *  1.6
     beta
     release

Then in powershell do:

> juliaup default beta
> julia

Julia REPL then launches and new version was installed:

julia> VERSION
v"1.7.0-rc3"

Linking also this post that has more information than I can process.