App software version number specification

**

Software version number: rules

**
Usually set rules: major.minor(.build)

:: Major is the largest version number, minor is the second, build is subdivided, and is the smaller version number.

:: Decimal version number, with the words "a", "b", and "rc", representing the beta version of the version

:: stand for "alpha", "beta", and "release candidate" respectively

:: For example, "2.0a" is the alpha test version of 2.0, and then "2.0b" is the beta test version of 2.0.

………… "2.0b2" appears again, which is the second beta test version of 2.0

:: After the beta test is over, two versions of "2.0rc1" and "2.0rc2" are launched, which respectively represent the release candidate test version of 2.0.

:: After the test is over, there will be an official version of "2.0"

**

App version number format

**
Such as QQ [7.3.5], Glory of the King [1.33.1.8], Alipay [10.1.12.123621],

Such as Taobao【7.5.0】, Meituan【8.9.2】……

:: It can be seen that the format of versionName is mostly 3 and 4 digits

:: Meaning of each number:

Major version number: The function has been greatly changed. If multiple modules are added or the overall structure changes, it will increase

Sub-version number: It will be increased when the function is moderately changed or changed

Patch version number: Generally, it will be added when bugs are fixed, original functions are optimized, and minor changes are made.

Date version number [build number]: used to record the current date of [modified project], it will be changed every day when it is modified.

…………Because the build number is incremented every time you build

:: Generally, the serial number can be set from 0, 1, and

:: Consider the meaning of each digit of the version number:

From the project dimension,

Change the main version number: when there are important changes to the App, such as adding new business function modules or technical architecture, increase the
sub-version number: add each time the requirements change iteratively

Patch version number: to fix Bugfix, optimize original functions, and increase when minor changes

——Will continue to be adjusted

Guess you like

Origin blog.csdn.net/miiiiiiiiiiiii/article/details/106303456