🚧

Version Numbering Is Applied to Short Bundle Version!

These instructions are applied to the CFBundleShortVersionString key of info.plist file, and you need to state the same value in 'Short Bundle Version' field of 'Release Management' section of DevMate Dashboard. For 'Bundle Version' field use the value of CFBundleVersion key.

When numbering the versions of your application, DevMate recommends using the standard X.Y.Z pattern, where X, Y and Z correspond to major, minor and patch numbers. Additionally, you can use quantifiers. Read more about those below.

The Major Number

The major number is the first integer in the version number. It indicates the number of the major application update. Changes in the major number indicate significant changes in end-user functionality and/or code base.

The version number should always contain a major number.

Examples: 1.0, 2.3, 5.8.7

The Minor Number

The minor number is the second integer in the version number. It shows the minor update of the application, usually indicates an incremental change in functionality and/or code. Sometimes developers distinguish even and odd minor numbers: even minor numbers are usually super-stable and time-tested while odd minor numbers are not mature or tested superficially.

The version number should always contain a minor number.

Examples: 1.0, 2.3, 5.8.7

The Patch Number

The patch number is the third integer in the version number. It indicates a bug fix in the functionality or code.

It is not necessary to include a patch number in the main number. If an application got a new minor or major version and there were no bug fixes yet, the version number should not contain the patch number.

Examples: 1.2.1, 2.2.5 (but not 2.2.0, 3.0.0).

Quantifiers

When you develop an application, it should be properly tested before going public. Usually, there are three testing stages that can be indicated in the version number: alpha release, beta release, and pre-release. You can use “a”, “b” and “rc” correspondingly to indicate the testing stage in your version numbers.

Note, that application versions with quantifiers in its numbers will be available for users only if your application supports beta version updates and users have agreed to get such updates.

DevMate disallows changing the quantifier after you have created a new version, so please be wise in numbering your application versions.

Examples: 1.0a, 1.3b, 2.2.2rc.

You can learn more about versioning here.