Default apps should start at version 0.1.0 instead of 0.0.1?
0.0.1 infers that it is a bug release of version 0.0.0.
If many are as I, relatively new to coding and software development, it’s good to start with proper habits.
ref: https://semver.org/
Default apps should start at version 0.1.0 instead of 0.0.1?
0.0.1 infers that it is a bug release of version 0.0.0.
If many are as I, relatively new to coding and software development, it’s good to start with proper habits.
ref: https://semver.org/
If you’re following semantic versioning, you can follow this thumb rule: MAJOR.MINOR.PATCH.
Also, since this is more of a tutorial, I’m moving this thread to #the-gallery!
Technically the semver specifications doesn’t require you to start at 0.1.0, but is is recommended in the FAQ. However the application should in its initial (development) phase only modify MINOR and PATCH versions.