Versioning

Production Versions:
<project_slug>-<major>.<code_version>.<build>

or

Development Versions:
<project_slug>_DEV-<major>.<code_version>.<build>

project_slug – unique project name
major
– is set inside project settings.
code_version – automatically changes when code is committed to repository
build – is set 0 by default – and increase when additional build is made (automatically )

Examples:

Development Release What has changed Production Release
myproject_DEV-1.1.0.zip initial version (released) myproject-1.1.0.zip
myproject_DEV-1.2.0.zip bug fix (released) myproject-1.2.0.zip
myproject_DEV-1.3.0.zip security fix (not released)
myproject_DEV-1.4.0.zip security fix (released) myproject-1.4.0.zip
myproject_DEV-1.4.1.zip settings changeĀ (released) myproject-1.4.1.zip
myproject_DEV-1.5.0.zip new functionality (released) myproject-1.5.0.zip
myproject_DEV-2.6.0.zip total new version (released) myproject-2.6.0.zip