This commit is contained in:
Thomas Nagy 2017-09-23 09:44:28 +02:00
parent 1e994e50fb
commit 8134aed186
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA
5 changed files with 15 additions and 6 deletions

View File

@ -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

View File

@ -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"

View File

@ -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

View File

@ -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':'!',

View File

@ -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=''