MCD - Level 1 Exam QuestionsBrowse all questions from this exam

MCD - Level 1 Exam - Question 17


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

Show Answer
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

2 comments
Sign in to comment
CJ_bulanOption: C
Feb 3, 2022

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
Feb 3, 2023

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.