From 4d481ab179cca8a287e338dde8936d0a088f6893 Mon Sep 17 00:00:00 2001 From: Thomas Nagy Date: Sun, 22 Oct 2017 10:34:57 +0200 Subject: [PATCH] waf-2.0.2 --- ChangeLog | 9 +++++++++ TODO | 6 +++++- waf-light | 2 +- waflib/Context.py | 6 +++--- wscript | 2 +- 5 files changed, 19 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index fbcf1087..b30c1ac4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +NEW IN WAF 2.0.2 +---------------- +* Improve Intel Fortran compiler detection on Windows #2063 +* Ensure that the task count starts at 1 in the build outputs +* Add a --pdb option to start pdb on unexpected exceptions #2052 +* Add java support in protobuf (extras) #2049 +* Add a java test example (extras) #2062 +* Enable symbol processing for empty targets (extras) #2053 + NEW IN WAF 2.0.1 ---------------- * Improve the default preprocessor behaviour for gcc/msvc diff --git a/TODO b/TODO index 92783d4a..0f6876e7 100644 --- a/TODO +++ b/TODO @@ -1,4 +1,8 @@ Waf 2.1 ------- -... +- Remove Winphone/WinCE detection in msvc.py +- Fix the circular imports ccroot<->c_config.py +- Remove superfluous *k in ctx.load() and other unused parameters +- Ensure conf.load() has the same interface as ctx.load() + diff --git a/waf-light b/waf-light index 24481cfa..fa0e37f2 100755 --- a/waf-light +++ b/waf-light @@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE. import os, sys, inspect -VERSION="2.0.1" +VERSION="2.0.2" REVISION="x" GIT="x" INSTALL="x" diff --git a/waflib/Context.py b/waflib/Context.py index 2dd770dd..33612f66 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=0x2000100 +HEXVERSION=0x2000200 """Constant updated on new releases""" -WAFVERSION="2.0.1" +WAFVERSION="2.0.2" """Constant updated on new releases""" -WAFREVISION="8134aed186690ec78c3b3f358be65049067301cb" +WAFREVISION="f67d5309f185e9a52194a0f93bd0b83c2881defd" """Git revision when the waf version is updated""" ABI = 20 diff --git a/wscript b/wscript index 4bd9de4b..e931ea65 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.1" +VERSION="2.0.2" APPNAME='waf' REVISION=''