From 8134aed186690ec78c3b3f358be65049067301cb Mon Sep 17 00:00:00 2001 From: Thomas Nagy Date: Sat, 23 Sep 2017 09:44:28 +0200 Subject: [PATCH] docs --- ChangeLog | 9 +++++++++ waf-light | 2 +- waflib/Context.py | 6 +++--- waflib/Tools/c_preproc.py | 2 +- wscript | 2 +- 5 files changed, 15 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index d65c00e7..fbcf1087 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +NEW IN WAF 2.0.1 +---------------- +* Improve the default preprocessor behaviour for gcc/msvc +* Accept task objects in Build.add_to_group for compatibility reasons +* Prevent xcode generator from overwriting existing features #2038 +* Fix self.includes data scope #2035 +* Fix Node.ant_glob case sensitivity regression #2034 +* Fix Logs.verbose options regression #2033 + NEW IN WAF 2.0.0 ---------------- * Provide a new priority system to improve scalability on complex builds diff --git a/waf-light b/waf-light index 7dde4048..24481cfa 100755 --- a/waf-light +++ b/waf-light @@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE. import os, sys, inspect -VERSION="2.0.0" +VERSION="2.0.1" REVISION="x" GIT="x" INSTALL="x" diff --git a/waflib/Context.py b/waflib/Context.py index 68354fc8..bea6f4b9 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=0x2000000 +HEXVERSION=0x2000100 """Constant updated on new releases""" -WAFVERSION="2.0.0" +WAFVERSION="2.0.1" """Constant updated on new releases""" -WAFREVISION="0279838cfd86c285935a70360b58c2a6fae7c3b2" +WAFREVISION="1e994e50fb769d674456ab83adac06846a4316c2" """Git revision when the waf version is updated""" ABI = 20 diff --git a/waflib/Tools/c_preproc.py b/waflib/Tools/c_preproc.py index 2a56b68b..eca7b0b1 100644 --- a/waflib/Tools/c_preproc.py +++ b/waflib/Tools/c_preproc.py @@ -51,8 +51,8 @@ if Utils.is_win32: use_trigraphs = 0 """Apply trigraph rules (False by default)""" +# obsolete, do not use strict_quotes = 0 -"""Reserve the "#include <>" quotes for system includes (do not search for those includes). False by default.""" g_optrans = { 'not':'!', diff --git a/wscript b/wscript index fb24a798..4bd9de4b 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.0" +VERSION="2.0.1" APPNAME='waf' REVISION=''