-
Notifications
You must be signed in to change notification settings - Fork 163
Version Management and Upgrades
Joongi Kim edited this page Jan 30, 2018
·
8 revisions
- Version numbering uses
x.y.zformat (wherex,y,zare integers). - Mostly, we follow the semantic versioning scheme.
-
x.yis a release branch name. -
x.y.zis a release tag name. - When releasing
x.y.0:- Create a new
x.ybranch, do all bugfix/hotfix there, and makex.y.zreleases there. - All fixes in the
x.ybranch must be merged back tomasteranddevelop. - Change the version number of
mastertox.(y+1).0a1 - There is no strict rules about alpha/beta/rc builds yet. We will elaborate as we scale up.
Once used, alpha versions will haveaNsuffixes, beta versionsbNsuffixes, and RC versionsrcNsuffixes whereNis an integer.
- Create a new
- New development should go on
masteranddevelopbranches.-
master: commit here directly if your changes are a self-complete one as a single commit. -
develop: for long-running incomplete development. - Use both short-lived and long-running feature branches freely, but ensure there names differ from release branches and tags.
-
- The major/minor (
x.y) version of Backend.AI subprojects will go together to indicate compatibility. Currently manager/agent/common versions progress this way, while client SDKs have their own version numbers and the API specification has a differentvN.yyyymmddversion format.-
backend.ai-manager 1.2.pis guaranteed to be compatible withbackend.ai-agent 1.2.q(wherepandqare same or different integers) - The client is guaranteed to be backward-compatible with the server they share the same API specification version.
-
You can upgrade the installed Python packages using pip install -U ... command along with dependencies.
If you have cloned the stable version of source code from git, then pull and check out the next x.y release branch.
It is recommended to re-run pip install -U -r requirements.txt as dependencies might be updated.
For the manager, ensure that your database schema is up-to-date by running alembic upgrade head.
Also check if any manual etcd configuration scheme change is required, though we will try to keep it compatible and automatically upgrade when first executed.