How to find out which version of a Mage2.PRO extension is installed in my store?

How can I find out which version of Strip extension I am using?
Would you recommend to update to the latest version?

Method 1. With Git.

  1. cd to the extension’s folder.
  2. Use the git describe --tags command:

Method 2. With composer.json.

2.1. Manually

Check the version tag value of the extension’s composer.json file.
E.g.:

2.2. Using grep

  1. cd to the extension’s folder.
  2. Use the grep version composer.json command:

See also: