Skip to content

Version

export type Version = {
    major: number,
    minor: number,
    isRelease: boolean
}

Describes a version of Fusion's source code.


Members

major : number

The major version number. If this is greater than 0, then two versions sharing the same major version number are not expected to be incompatible or have breaking changes.

minor : number

The minor version number. Describes version updates that are not enumerated by the major version number, such as versions prior to 1.0, or versions which are non-breaking.

isRelease : boolean

Describes whether the version was sourced from an official release package.

Back to top