|
cesium-native 0.57.0
|
This is the process we follow when releasing a new version of Cesium Native.
CHANGES.md is complete and accurate.version property in package.json.VERSION property passed to the project() function in CMakeLists.txt.main.Releasing is simply a matter of tagging the release and pushing the tag to GitHub. Replace the version number with the one used in the preparation steps above.
git tag -a v0.56.0 -m "0.56.0 release"git push origin v0.56.0A CI job automatically publishes the documentation to the web site at https://cesium.com/learn/cesium-native/ref-doc/ when it is merged into the cesium.com branch. So do the following:
git checkout cesium.comgit pull --ff-onlygit merge v0.56.0 --ff-onlygit pushgit checkout mainThe --ff-only flags ensure that no new commits are created in the process. We only want to bring over commits from the release tag. If the pull or merge fails, something unusual has probably happened with the git history and it warrants a little investigation before proceeding.