Skip to content

Commit

Permalink
cli: core list now shows only latest compatible versions
Browse files Browse the repository at this point in the history
  • Loading branch information
alessio-perugini committed Aug 24, 2023
1 parent d0629b2 commit 58c6039
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/cli/core/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ func (ir installedResult) String() string {
if p.Deprecated {
name = fmt.Sprintf("[%s] %s", tr("DEPRECATED"), name)
}
t.AddRow(p.Id, p.Installed, p.Latest, name)
t.AddRow(p.Id, p.Installed, p.LatestCompatible, name)
}

return t.Render()
Expand Down

0 comments on commit 58c6039

Please sign in to comment.