What do the numbers in a version typically represent (i.e. v1.9.0.1)?

后端 未结 28 1050
没有蜡笔的小新
没有蜡笔的小新 2020-11-30 16:51

Maybe this is a silly question, but I\'ve always assumed each number delineated by a period represented a single component of the software. If that\'s true, do they ever rep

28条回答
  •  一向
    一向 (楼主)
    2020-11-30 17:33

    There is the Semantic Versioning specification

    This is the summary of version 2.0.0:

    Given a version number MAJOR.MINOR.PATCH, increment the:

    1. MAJOR version when you make incompatible API changes,
    2. MINOR version when you add functionality in a backwards-compatible manner, and
    3. PATCH version when you make backwards-compatible bug fixes.

    Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format.

提交回复
热议问题