Preparations for waf 2.0.3

This commit is contained in:
Thomas Nagy 2017-12-02 09:42:46 +01:00
parent 6a80016ad5
commit 2a4c4f0b66
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA
4 changed files with 14 additions and 5 deletions

View File

@ -1,3 +1,12 @@
NEW IN WAF 2.0.3
----------------
* Enable install_path=None for Python targets #2087
* Prevent duplicate paths when adding from user classpath #2084
* Change the unit test summary color scheme to use green and red colors
* Improve the deadlock error message
* Report sys.path values from Context.load_tool to improve error messages
* Cache qrc uic->h conversions to enable qrc re-use across targets
NEW IN WAF 2.0.2
----------------
* Improve Intel Fortran compiler detection on Windows #2063

View File

@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE.
import os, sys, inspect
VERSION="2.0.2"
VERSION="2.0.3"
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=0x2000200
HEXVERSION=0x2000300
"""Constant updated on new releases"""
WAFVERSION="2.0.2"
WAFVERSION="2.0.3"
"""Constant updated on new releases"""
WAFREVISION="b1efcfa6abfe9c0108d20961769e9dbc7670e761"
WAFREVISION="6a80016ad5d49d87712720ce5704198c23c9addf"
"""Git revision when the waf version is updated"""
ABI = 20

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.2"
VERSION="2.0.3"
APPNAME='waf'
REVISION=''