CFBundleShortVersionString
CFBundleShortVersionString is a key in an Apple platform application’s Info.plist that specifies the bundle’s release version as presented to users. It is distinct from CFBundleVersion, which records the build number or internal version. The Short Version String is intended for display in user-facing contexts such as the App Store, device settings, and other UI elements, while the build number is for internal tracking and update management.
The value is a string and is commonly formatted using semantic versioning, for example "1.2.3" or "2.0".
Setting and maintenance: In Xcode, CFBundleShortVersionString is exposed as the Version field in the project target’s
Relation to other keys: CFBundleVersion is the build number and may reset or increment independently of the