Currently, the project seems to be using its own versioning scheme that seems to be a semantic-like versioning scheme
However, as it does not meet the semantic spec, it does not allow us to use semantic-aware tools such as Dependabot configuration options
For example, it would allow us to do things like
ignore:
- dependency-name: "io.github.oshai:kotlin-logging-jvm"
update-types: ["version-update:semver-patch"]
Rather than 8.0.03, It would be nice, if you could just release using the format 8.0.3 in the future. While the versions look very similar, one is semantic(8.0.3) while the other is not.
See: https://semver.org/
Currently, the project seems to be using its own versioning scheme that seems to be a semantic-like versioning scheme
However, as it does not meet the semantic spec, it does not allow us to use semantic-aware tools such as Dependabot configuration options
For example, it would allow us to do things like
Rather than
8.0.03, It would be nice, if you could just release using the format8.0.3in the future. While the versions look very similar, one is semantic(8.0.3) while the other is not.See: https://semver.org/