Skip to content

Commit

Permalink
Preparing to test release v2.0.0.beta4
Browse files Browse the repository at this point in the history
  • Loading branch information
dleffler committed Jul 15, 2011
1 parent 11bd46c commit 7d94f12
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions exponent_version.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,34 +19,34 @@

if (!defined('EXPONENT_VERSION_MAJOR')) {
// the RELEASE constant is changed by the build scripts at code freeze
define('RELEASE','%%RELEASE%%');
define('RELEASE','RELEASE');
if (RELEASE != '%%RELEASE%%') {

/* exdoc
* This is the major version number of Exponent; the 0 in 0.96.2-beta3
*/
define('EXPONENT_VERSION_MAJOR','%%MAJOR%%');
define('EXPONENT_VERSION_MAJOR','2');
/* exdoc
* This is the minor version number of Exponent; the 96 in 0.96.2-beta3
*/
define('EXPONENT_VERSION_MINOR','%%MINOR%%');
define('EXPONENT_VERSION_MINOR','0');
/* exdoc
* This is the revision version number of Exponent; the 2 in 0.96.2-beta3
*/
define('EXPONENT_VERSION_REVISION','%%REVISION%%');
define('EXPONENT_VERSION_REVISION','0');
/* exdoc
* This is the date that this version of Exponent was exported from BZR and built.
*/
define('EXPONENT_VERSION_BUILDDATE','%%BUILDDATE%%');
/* exdoc
* This specifies the type of release, either 'alpha','beta','rc' or '' (for stable).
*/
define('EXPONENT_VERSION_TYPE','%%TYPE%%');
define('EXPONENT_VERSION_TYPE','beta');
/* exdoc
* This number is bumped each time a distribution of a single version is
* released. For instance, the 3rd beta has an version type iteration of 3.
*/
define('EXPONENT_VERSION_ITERATION','%%ITERATION%%'); // only applies to betas/alphas / rcs
define('EXPONENT_VERSION_ITERATION','4'); // only applies to betas/alphas / rcs
} else {
define('EXPONENT_VERSION_MAJOR','2');
define('EXPONENT_VERSION_MINOR','0');
Expand Down

0 comments on commit 7d94f12

Please sign in to comment.