After running "apt-get upgrade" I get a list of the packages that will be upgraded. I would like to know the version number for one of these packages (Not the current one but the one that will be installed). How do i get this information?

link|improve this question
feedback

2 Answers

up vote 13 down vote accepted
apt-cache show <packagename>

should include the full version numbers.

link|improve this answer
feedback

If you just want the version info without the description and such, use apt-cache policy instead of apt-cache show.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown