-
Notifications
You must be signed in to change notification settings - Fork 269
Versioning system between components and alfresco js api
Adina Parpalita edited this page Jul 25, 2017
·
2 revisions
The alfresco-js-api follow the same semantic versioning of the alfresco-ng2-components framework.
This means that any version of the alfresco-ng2-components works with the corresponding version of the alfresco-js-api and they are released at the same time.
For example if you are using alfresco-ng2-components 1.4.0 you should use the same alfresco-js-api 1.4.0 version
Patches can be released independently between alfresco-ng2-components and alfresco-js-api
This means that if you are using npm you can safely use the tilde ~ wildcard
Patch releases: ~1.4.0
we do not suggest any other wildcard
Given a version number MAJOR.MINOR.PATCH, increment the:
- MAJOR version when you make incompatible API changes,
- MINOR version when you add functionality in a backwards-compatible manner, and
- PATCH version when you make backwards-compatible bug fixes.