Dev Guide
Dev GuideUser GuideGitHubNuGetDevCommunityDoc feedbackLog In
GitHubNuGetDevCommunityDoc feedback

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:

VersionReason
1.0Version number only includes a MAJOR and MINOR number, but is missing the required PATCH number
1.2.3.4Version number includes 5 numbers separated by periods, which is not a valid semantic version
1.002.3Version MINOR number has leading zero
1.2.3-dev.01Version pre-release tag has leading zero
1.2.3-internalVersion 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-2Pre-release version is followed by hyphen instead of dot