How to Upgrade
Versioning
Concordia Compiler's versions are based on Semantic Versioning.
Although Semantic Versioning is conceived for APIs instead of for applications, we adopt a very similar convention. Thus, changes become predictable and you can know, from the version numbers, when a version is no more compatible with a previous version.
Given a version MAJOR.MINOR.UPDATE:
MAIORis increased when the Compiler or the Language is no more compatible with the previous version.MINORis increased when adding functionality in a backwards-compatible manner.UPDATEis increased when there are fixes, little changes or little novelties - all of them backwards-compatible.
Examples:
0.2.0is compatible with0.1.00.1.1is compatible with0.1.01.0.0is not compatible with0.2.0
Upgrade
NPM upgrades without breaking compatibility (when MINORorUPDATE changes).
For migrating a MAJOR version (e.g., 1.x to 2.x) please read our Migration Guide.
To upgrade a local installation:
npm upgrade concordialangTo upgrade a global installation:
npm upgrade -g concordialangLast updated