# Typically determined by the branch name, such as release-4.0 corresponding to version 4.0
doom build -v 4.0 # Build version 4.0, output artifacts to dist/4.0, documentation access path is {base}/4.0
doom build -v master # Build master version, output artifacts to dist/master, documentation access path is {base}/master
doom build -v {other} # Build other versions, output artifacts to dist/{other}, documentation access path is {base}/{other}
# unversioned and unversioned-x.y are special version numbers used for building documents without version prefixes
doom build -v unversioned # Build document without version prefix, output artifacts to dist/unversioned, documentation access path is {base}
doom build -v unversioned-4.0 # Build document without version prefix but display version number 4.0 in the navigation bar, output artifacts to dist/unversioned, documentation access path is {base}