Version an app
This doc provides instructions on versioning your app for development, and then later for app release.
May be able to use content from here: https://dash.readme.com/project/digital-experience-platform/v1.5.0-optimizely-data-platform/docs/update-your-app-version
Example of valid app versions:
1.0.0
0.0.1-dev.1
1.0.0-beta.2
1.2.3-private
Example of invalid app versions:
Version | Reason |
---|---|
1.0 | Version number only includes a MAJOR and MINOR number, but is missing the required PATCH number |
1.2.3.4 | Version number includes 5 numbers separated by periods, which is not a valid semantic version |
1.002.3 | Version MINOR number has leading zero |
1.2.3-dev.01 | Version pre-release tag has leading zero |
1.2.3-internal | Version pre-release tag is invalid, only dev, beta and private are supported |
1.2.3- | Version number includes a hyphen followed by nothing, which is not a valid pre-release identifier |
1.2.3-beta-2 | Pre-release version is followed by hyphen instead of dot |
Updated about 1 month ago