15
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
this post was submitted on 30 Jun 2024
15 points (100.0% liked)
General Programming Discussion
10012 readers
1 users here now
A general programming discussion community.
Rules:
- Be civil.
- Please start discussions that spark conversation
Other communities
Systems
Functional Programming
Also related
founded 7 years ago
MODERATORS
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*MAJORis incremented when there are backwards incompatible changes.MINORis incremented when new features are added in a backwards compatible way.PATCHis incremented for smaller big fixes.* It's a bit more complex than this, but this is the gist.