waf-2.0.12

This commit is contained in:
Thomas Nagy 2018-10-07 20:02:43 +02:00
parent fc59ca785d
commit 88e9382f1b
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA
4 changed files with 9 additions and 5 deletions

View File

@ -1,3 +1,7 @@
NEW IN WAF 2.0.12
-----------------
* Fix broken inheritance task trees #2194
NEW IN WAF 2.0.11 NEW IN WAF 2.0.11
----------------- -----------------
* Do not raise an exception on check_cfg/mandatory=False/-vv #2193 * Do not raise an exception on check_cfg/mandatory=False/-vv #2193

View File

@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE.
import os, sys, inspect import os, sys, inspect
VERSION="2.0.11" VERSION="2.0.12"
REVISION="x" REVISION="x"
GIT="x" GIT="x"
INSTALL="x" INSTALL="x"

View File

@ -11,13 +11,13 @@ from waflib import Utils, Errors, Logs
import waflib.Node import waflib.Node
# the following 3 constants are updated on each new release (do not touch) # the following 3 constants are updated on each new release (do not touch)
HEXVERSION=0x2000b00 HEXVERSION=0x2000c00
"""Constant updated on new releases""" """Constant updated on new releases"""
WAFVERSION="2.0.11" WAFVERSION="2.0.12"
"""Constant updated on new releases""" """Constant updated on new releases"""
WAFREVISION="a97f6fb0941091b4966b625f15ec32fa783a8bec" WAFREVISION="54841218840ffa34fddf834680a5a17db69caa12"
"""Git revision when the waf version is updated""" """Git revision when the waf version is updated"""
ABI = 20 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 from __future__ import with_statement
VERSION="2.0.11" VERSION="2.0.12"
APPNAME='waf' APPNAME='waf'
REVISION='' REVISION=''