MortySmith@programming.dev to General Programming Discussion@lemmy.ml · 4 months agoQuestion: Does the build number always increment no matter the version or does the build number resets to 1 for every new version?message-squaremessage-square4fedilinkarrow-up115arrow-down10
arrow-up115arrow-down1message-squareQuestion: Does the build number always increment no matter the version or does the build number resets to 1 for every new version?MortySmith@programming.dev to General Programming Discussion@lemmy.ml · 4 months agomessage-square4fedilink
minus-squarecbarrick@lemmy.worldlinkfedilinkEnglisharrow-up20·4 months agoThe meaning of version numbers can vary across projects. One common scheme is Semantic Versioning, which divides the version number into three parts: MAJOR.MINOR.PATCH* MAJOR is incremented when there are backwards incompatible changes. MINOR is incremented when new features are added in a backwards compatible way. PATCH is incremented for smaller big fixes. Each number is reset to zero when a higher level number is incremented. * It’s a bit more complex than this, but this is the gist.
The meaning of version numbers can vary across projects.
One common scheme is Semantic Versioning, which divides the version number into three parts:
MAJOR.MINOR.PATCH
*MAJOR
is incremented when there are backwards incompatible changes.MINOR
is incremented when new features are added in a backwards compatible way.PATCH
is incremented for smaller big fixes.* It’s a bit more complex than this, but this is the gist.