We try to respect semantic versioning as much as possible. Going from 1.13.1 to 1.13.2 should cause almost no breaking changes, except for packages version update, small tweaks, etc. Going from 1.13 to 1.14 could cause multiple breaking changes. Going from 1.x to 2.x is a full rework.
Changes will be tracked in the changelog file.
- If updating to a minor or major with non trivial breaking changes (1.13 to 1.14 for example), create a branch for the previous version based on master (1.13 in this example).
- Go to a
release/your-version
branch. - Update packages versions in each package.
- Update the CHANGELOG.md.
- Update package.json version.
- Test the Starter, test apps, run unit tests, and apply relevant fixes
- Run tests, apply fixes if necessary
- Merge release branch into
devel
(so that fixes from the release branch are shared) and thenmaster
. - Go to
master
branch - Create a tag for this version
git tag 1.x.x
. - Push with
--tags
option:git push --tags
- Deploy on Atmosphere
No need to maintain specific branches for versions, as the Starter is only meant to be used once for new projects initialization.
We only use devel
and master
branches.
- Go to
devel
branch. - Update Vulcan packages versions in
.meteor/packages
. - Check that the packages are working as expected, solve breaking changes.
- Check that
package.json
versions matches Vulcan'spackage.json
. - Merge devel in to
master
. - Create a tag for this version.
- Push with
--tags
.
- If updating to a minor or major with non trivial breaking changes (1.13 to 1.14 for example), create a branch for the previous version based on master (1.13 in this example).
- Do relevant updates on
devel
branch - Merge into
master
- Update the docs after packages are releved