Multiple choice technology

RuleSet versions consist of 3 separate numbers

  1. Patch-Major-Minor

  2. Minor-Patch-Major

  3. Major-Minor-Patch

  4. Minor-Patch-Major-SubMajor

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Semantic versioning follows the format Major.Minor.Patch, where Major indicates incompatible API changes, Minor adds backwards-compatible functionality, and Patch fixes bugs. Options A and B reverse this standard order, while D incorrectly adds a fourth component.