keycloak / keycloak-nodejs-connect

Apache License 2.0
682 stars 421 forks source link

Use a valid SemVer format for the SNAPSHOT version #475

Closed jonkoops closed 1 year ago

jonkoops commented 1 year ago

Changes the default version string from 999-SNAPSHOT to 999.0.0-SNAPSHOT. This makes it a valid version under the Semantic Versioning standard.

The motivation for this change is to make versioning interoperable between Maven and NPM, as the latter only allows for Semantic Versioning. This allows for simplification in the release process, as we no longer need to convert version numbers from one to the other.

For more information see https://github.com/keycloak/keycloak/issues/17335.