commands/box: show version

This commit is contained in:
Mitchell Hashimoto 2014-04-01 22:04:49 -07:00
parent e7277f5e83
commit d45eb1f183
2 changed files with 2 additions and 1 deletions

View File

@ -17,6 +17,7 @@ BUG FIXES:
- core: private networks with DHCP type work if type parameter is
a string and not a symbol. [GH-3349]
- core: Converting to cygwin path works for folders with spaces. [GH-3304]
- commands/box: Show versions when listing. [GH-3316]
- commands/status: Machine readable output contains the target. [GH-3218]
- guests/arch: Reload udev rules after network change. [GH-3322]
- guests/debian: Changing host name works properly. [GH-3283]

View File

@ -45,7 +45,7 @@ module VagrantPlugins
# important for the user to know what boxes need to be upgraded
# and which don't, since we plan on doing that transparently.
boxes.each do |name, version, provider|
@env.ui.info("#{name.ljust(longest_box_length)} (#{provider}) [#{version}]")
@env.ui.info("#{name.ljust(longest_box_length)} (#{provider}, #{version})")
@env.ui.machine("box-name", name)
@env.ui.machine("box-provider", provider)