I recently reported a bug on Ubuntu Launchpad and the fix was recently pushed as an update. One of the repo maintainers asked me to check if I have this update installed or not.
How do I check if a particular update package has been installed in my system or not? Is there a way to check via the command line?
dpkg -s <package> | grep version
– Alex_Krug Mar 16 '21 at 06:37apt-cache policy
might be better since it will also show whether that version is available for you install. – muru Mar 16 '21 at 06:40apt-cache policy
(it also shows what is available as well from your available sources) – guiverc Mar 16 '21 at 07:00