Exam MCD - Level 1 All QuestionsBrowse all questions from this exam
Question 17

According to Semantic Versioning, which version would you change for incompatible API changes?

    Correct Answer: C

    According to Semantic Versioning, the version you would change for incompatible API changes is the MAJOR version. Semantic Versioning follows the format MAJOR.MINOR.PATCH. The MAJOR version is incremented for incompatible API changes, the MINOR version for adding functionality in a backward-compatible manner, and the PATCH version for making backward-compatible bug fixes.

Discussion
CJ_bulanOption: C

Given a version number MAJOR.MINOR.PATCH, increment the: MAJOR version when you make incompatible API changes, MINOR version when you add functionality in a backwards compatible manner, and 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.

kampatraOption: C

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