[Contents] [TitleIndex] [WordIndex

1. Scilab branch policies

Scilab is using a classical way of release. We use a 3 digit numeration system:
X.Y.Z
Incrementing X is considered as a major release
Y as a medium
Z as a minor

1.1. Major releases

We have some major families:

Major/medium releases are done when important modifications are done in the code and they could influence toolboxes, existing codes... Any major evolution of the Scilab language are done through a major release, especially if it introduces compatibility issues.

1.2. Medium releases

In a major family, many medium versions are released. Medium releases introduce some important changes, new module, new feature, etc. Some changes in the function profile can also occurs but Scilab language must remains compatible with previous release.

1.3. Minor releases

Versions fixing bugs which don't involve big or tricky changes in the code. For example, 5.0.1, 5.0.2 ...

2. Purpose of each branch

Since we are using git, it is pretty easy to manage the different versions.

The list of branches can be seen on GitWeb.

2.1. Main development branches

2.2. Temporary development branches

Some other branches are used to avoid disruption while a specific feature is under development. These branches are not supposed to live forever. Once the development they are hosting is completed, they will be merged into the master branch. More information about the purpose of each such temporary branch:

2.3. Any other branch

All other branches are dead (no longer used). These are:

2.4. Working with branches

2.4.1. Checkout a specific branch

The case does matter.

git clone git@git.scilab.org:scilab -b 5.3 5.3

2.4.2. Fixing a bug

See: How to close a bug in Scilab

2.4.3. Commands

See these pages :


2022-09-08 09:27