diff --git a/ChangeLog b/ChangeLog index e1c08631..34bc9bfb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +NEW IN WAF 2.0.5 +---------------- +* Force unit tests to depend on the executable creation time besides file contents +* Enhance the Eclipse project generator +* Update the cuda examples + NEW IN WAF 2.0.4 ---------------- * Enable more advanced warnings of ant_glob on build folders in verbose mode diff --git a/waf-light b/waf-light index f4f48072..309cbb9b 100755 --- a/waf-light +++ b/waf-light @@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE. import os, sys, inspect -VERSION="2.0.4" +VERSION="2.0.5" REVISION="x" GIT="x" INSTALL="x" diff --git a/waflib/Context.py b/waflib/Context.py index 8bbb0123..7784d0f5 100644 --- a/waflib/Context.py +++ b/waflib/Context.py @@ -11,13 +11,13 @@ from waflib import Utils, Errors, Logs import waflib.Node # the following 3 constants are updated on each new release (do not touch) -HEXVERSION=0x2000400 +HEXVERSION=0x2000500 """Constant updated on new releases""" -WAFVERSION="2.0.4" +WAFVERSION="2.0.5" """Constant updated on new releases""" -WAFREVISION="5996879673deb7166b61a299be317a738de6891e" +WAFREVISION="deacb94c933307caa33e29717d232e8687ee12e0" """Git revision when the waf version is updated""" ABI = 20 diff --git a/wscript b/wscript index 9550ce67..7d2ceb5d 100644 --- a/wscript +++ b/wscript @@ -11,7 +11,7 @@ To add a tool that does not exist in the folder compat15, pass an absolute path: from __future__ import with_statement -VERSION="2.0.4" +VERSION="2.0.5" APPNAME='waf' REVISION=''