phabelio/phabel

suggestion: use Semantic Versioning

Opened this issue · 1 comments

most of composer packages use Semantic Versioning, such as 1.2.3, not 1.2.3.4

image

docs: https://semver.org/
https://getcomposer.org/doc/articles/versions.md

if need build number, use 1.2.3+80, not 1.2.3.80

Build metadata MAY be denoted by appending a plus sign and a series of dot separated identifiers immediately following the patch or pre-release version. Identifiers MUST comprise only ASCII alphanumerics and hyphens [0-9A-Za-z-]. Identifiers MUST NOT be empty. Build metadata MUST be ignored when determining version precedence. Thus two versions that differ only in the build metadata, have the same precedence. Examples: 1.0.0-alpha+001, 1.0.0+20130313144700, 1.0.0-beta+exp.sha.5114f85, 1.0.0+21AF26D3—-117B344092BD.

danog commented

+, good idea, will implement.
Thanks for the tip!