|
|
|
|
|
by pixel_fcker
3480 days ago
|
|
A piece of software I'm familiar with does this Arch.Major.Minor.Patch. The Arch number represents a "generation" of the software that represents a significant overhaul where the architecture changes and input files that were generated for previous versions are not likely to work. Major represents breaking API compatibility, so users who write plugins for the software will need to recompile and possibly change their code (but maybe not depending on what changed). Minor and Patch are what you'd expect from semver. This works extremely well from my experience. |
|