Note: You are currently viewing documentation for Moodle 1.9. Up-to-date documentation for the latest stable version is available here: Moodle versions.

Moodle versions: Difference between revisions

From MoodleDocs
mNo edit summary
m (→‎Upgrade warnings: Improved Git instructions because folks ran into problems with re-creating the local branch)
 
(7 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{stub}}
== Upgrade warnings==


[[Image:versions.png|Schema of Moodle versions]]
If you reached this page from a warning during an upgrade from a stable version then it's probable that some of our branch changes have affected you.


TODO: This page will be filled soon as a part of MDL-26609.
From November 2010 until March 2011 we were using the "master" in git (HEAD in CVS) to work on the stable version of Moodle 2.0.x.  In March 2011 we split the stable development to a separate branch called MOODLE_20_STABLE (see diagram below). 
 
If you intend to stay with the most recent stable version of Moodle, then you need to switch your checkout over to use the MOODLE_20_STABLE branch. If you are using CVS, then use
 
    cvs -q update -dPr MOODLE_20_STABLE
 
If you are using Git, then you must create new local branch in your clone that will track the remote stable branch and switch to it.
 
    git branch --track local_20_STABLE origin/MOODLE_20_STABLE      (1)
    git checkout local_20_STABLE                                    (2)
    git pull                                                        (3)
 
Note that you can choose any name for the local branch. In the example above, the local branch is called local_20_STABLE. At the line (1) the new local branch is created and set to track the remote branch MOODLE_20_STABLE. At the line (2) we switch to the newly created branch. At the line (3) the git-pull command fetches recent changes from the upstream and merges them into your local branch. To update your Moodle next week, you can run just the line (3).
 
==Moodle versions and branches==
 
Understanding the Moodle versioning scheme will help you when using our repositories to get your code (eg for an [[Upgrading|upgrade]]).  Knowing the correct versions is also very useful when reporting bugs in our [[Tracker|tracker]].
 
[[Image:versions.png|thumb|left|668px|Schema of Moodle source code branches, versions and maturity levels]]
<br clear="all" />
 
== Major and minor versions ==
 
Moodle version numbers consist of three numbers separated by a dot, for example 1.9.11 or 2.0.2. The first two numbers, like 1.9 or 2.0, represent the ''major version''. The third number distinguishes ''minor versions'' within the same major version. When a new major version is released, it starts with the minor version set to 0 (zero). So Moodle 2.0.1 was the first minor update of Moodle 2.0.0.
 
Generally, the Moodle HQ team maintains the two most recent major versions of Moodle (a notable exception to the rule is for Moodle 1.9 which will be supported much longer, until June 2012)
 
 
== Versions and branches ==
 
Moodle developers use the source code management (SCM) system ''''Git'''' to track changes in the code. As in many SCMs, the history of changes in Git is represented via so called branches. You can consider a branch as a labeled sequence of source code changes.
 
There is a branch created for every major version of Moodle. All Moodle 1.9 versions come from MOODLE_19_STABLE branch and all Moodle 2.0 versions come from MOODLE_20_STABLE branch. There is also a main development branch called master that holds the changes for the next future version. At the moment, the changes on the master branch will be included in Moodle 2.1 release.
 
== Releases ==
 
Since version 2.0, Moodle aims to release the new major version every six months or so. See [[Roadmap]] page for a schedule.
 
Minor versions are released irregularly, typically when there is a significant amount of fixes since the last version or if there is a security issue fixed (in either Moodle itself or in some external library it uses).
 
In the meantime between two releases, Moodle HQ team publish updates for the most recent stable versions. These updates are published every week, usually on Wednesday. They are known as ''weekly builds'' and are identified by a number like 20110323. That is a timestamp in a form YYYYMMDD when the weekly build was released. These weekly builds are labelled with a version number suffixed with a plus sign. So 2.0.2+ denotes some weekly build extending the 2.0.2 minor release.
 
== Source code maturity levels ==
 
During its life cycle, the Moodle code branch goes through several maturity levels.
* At the beginning, the branch is considered as being in ''alpha'' state. During this period, new features are added to the branch. API and database structure may change as needed. These versions are intended mainly for developers as nothing is guaranteed (the version may or may not install and upgrade, for example).
* When it is decided that no new feature will be added to the branch (so called feature freeze), ''beta'' maturity level is reached. Developers focus on testing, bugs fixing and stabilizing the branch.
* When all known critical and blocker bugs are fixed and no new bugs are reported for some time of testing, a preview version of the branch can be released as so called release candidate. When the first release candidate version (RC1) has been published, ''release candidate'' maturity level is reached. During this period, several RC versions can be issued, for example 2.1RC1, 2.1RC2, 2.1RC3 etc.
* Finally, the new major version is released and the branch reaches ''stable'' maturity level. From now on, the database structure and API do not change on this branch. A corresponding MOODLE_xx_STABLE is created and minor versions and weekly builds are created off it.


== See also ==
== See also ==


* [[Git for Administrators]]
* [[CVS for Administrators]]
* [[CVS for Administrators]]
* http://download.moodle.org


[[Category:Administrator]]
[[Category:Administrator]]

Latest revision as of 11:03, 1 April 2011

Upgrade warnings

If you reached this page from a warning during an upgrade from a stable version then it's probable that some of our branch changes have affected you.

From November 2010 until March 2011 we were using the "master" in git (HEAD in CVS) to work on the stable version of Moodle 2.0.x. In March 2011 we split the stable development to a separate branch called MOODLE_20_STABLE (see diagram below).

If you intend to stay with the most recent stable version of Moodle, then you need to switch your checkout over to use the MOODLE_20_STABLE branch. If you are using CVS, then use

   cvs -q update -dPr MOODLE_20_STABLE

If you are using Git, then you must create new local branch in your clone that will track the remote stable branch and switch to it.

   git branch --track local_20_STABLE origin/MOODLE_20_STABLE      (1)
   git checkout local_20_STABLE                                    (2)
   git pull                                                        (3)

Note that you can choose any name for the local branch. In the example above, the local branch is called local_20_STABLE. At the line (1) the new local branch is created and set to track the remote branch MOODLE_20_STABLE. At the line (2) we switch to the newly created branch. At the line (3) the git-pull command fetches recent changes from the upstream and merges them into your local branch. To update your Moodle next week, you can run just the line (3).

Moodle versions and branches

Understanding the Moodle versioning scheme will help you when using our repositories to get your code (eg for an upgrade). Knowing the correct versions is also very useful when reporting bugs in our tracker.

Schema of Moodle source code branches, versions and maturity levels


Major and minor versions

Moodle version numbers consist of three numbers separated by a dot, for example 1.9.11 or 2.0.2. The first two numbers, like 1.9 or 2.0, represent the major version. The third number distinguishes minor versions within the same major version. When a new major version is released, it starts with the minor version set to 0 (zero). So Moodle 2.0.1 was the first minor update of Moodle 2.0.0.

Generally, the Moodle HQ team maintains the two most recent major versions of Moodle (a notable exception to the rule is for Moodle 1.9 which will be supported much longer, until June 2012)


Versions and branches

Moodle developers use the source code management (SCM) system 'Git' to track changes in the code. As in many SCMs, the history of changes in Git is represented via so called branches. You can consider a branch as a labeled sequence of source code changes.

There is a branch created for every major version of Moodle. All Moodle 1.9 versions come from MOODLE_19_STABLE branch and all Moodle 2.0 versions come from MOODLE_20_STABLE branch. There is also a main development branch called master that holds the changes for the next future version. At the moment, the changes on the master branch will be included in Moodle 2.1 release.

Releases

Since version 2.0, Moodle aims to release the new major version every six months or so. See Roadmap page for a schedule.

Minor versions are released irregularly, typically when there is a significant amount of fixes since the last version or if there is a security issue fixed (in either Moodle itself or in some external library it uses).

In the meantime between two releases, Moodle HQ team publish updates for the most recent stable versions. These updates are published every week, usually on Wednesday. They are known as weekly builds and are identified by a number like 20110323. That is a timestamp in a form YYYYMMDD when the weekly build was released. These weekly builds are labelled with a version number suffixed with a plus sign. So 2.0.2+ denotes some weekly build extending the 2.0.2 minor release.

Source code maturity levels

During its life cycle, the Moodle code branch goes through several maturity levels.

  • At the beginning, the branch is considered as being in alpha state. During this period, new features are added to the branch. API and database structure may change as needed. These versions are intended mainly for developers as nothing is guaranteed (the version may or may not install and upgrade, for example).
  • When it is decided that no new feature will be added to the branch (so called feature freeze), beta maturity level is reached. Developers focus on testing, bugs fixing and stabilizing the branch.
  • When all known critical and blocker bugs are fixed and no new bugs are reported for some time of testing, a preview version of the branch can be released as so called release candidate. When the first release candidate version (RC1) has been published, release candidate maturity level is reached. During this period, several RC versions can be issued, for example 2.1RC1, 2.1RC2, 2.1RC3 etc.
  • Finally, the new major version is released and the branch reaches stable maturity level. From now on, the database structure and API do not change on this branch. A corresponding MOODLE_xx_STABLE is created and minor versions and weekly builds are created off it.

See also