Is there a certain structure for how we increment the app 'version' in the manifest.json file?

Do I have to increment it like 1.0 → 1.1 or 1.0 → 2.0 or does it really matter as long it’s a higher decimal and in the right format?

The client always tries to install the highest version, so there is no difference technically, but it is a good habit to get into in general:

  • Small changes/Fixes 1.0.1 > 1.0.2 > 1.0.3
  • Features added 1.1.0 > 1.2.0 > 1.3.0
  • Big changes/Incompatible features/Migration needed 1.0.0 > 2.0.0 > 3.0.0

read more info about the “info” flag.