Semver explained with emojis

4/26/2020
ยท 1 min read

Semver is a way of versioning software.

Given the doc:

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.

We can explain that very shortly by replacing MAJOR.MINOR.PATCH by:

๐Ÿ˜ฑ.๐Ÿค—.๐Ÿค’

From: