I'm working on Ubuntu 14.04 and I found something that I can't understand.
I execute the commands as below:
apt update && apt list --upgradable
I've found that bash
is in the upgradable list.
For now the output of bash --version
tells me that the version of bash is 4.3.11(1)
.
Then I do apt upgrade
.
To my surprise, I do bash --version
again and the output doesn't change at all. The version of bash
is still 4.3.11(1)
.
So is this normal?, Some package can be upgradable while its version doesn't change?
You should also check the package version:
As can be seen, the package and bash version strings have differences, as they're set by different people. In your case it might well be the case that nothing changed upstream, and changes were entirely by the package maintainer, so
bash --version
remains unchanged, but the package version changed.