2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-21 17:35:55 +01:00

waf-2.0.16

This commit is contained in:
Thomas Nagy 2019-05-15 23:54:17 +02:00
parent 8cbc8da5ce
commit c295c0bcda
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA
4 changed files with 20 additions and 5 deletions

View File

@ -1,3 +1,18 @@
NEW IN WAF 2.0.16
-----------------
* Fix task semaphore errors on stateful tasks #2232
* Fix encoding errors with UTF-8 paths on Python 2 #2230
* Fix encoding errors in waf_unit_test #2220
* Improve dependency between javac task and use-d generated jars nodes
* Install pdb files with /debug:* flags #2224
* Make javadoc detection optional #2225
* Improve md5_tstamp documentation #2221
* Add extras/color_msvc to colorizes MSVC outputs #2221
* Fix symbol regex on mac-o binaries in extras/syms #2222
* Maintain order of lines in doxyfile in extras/doxygen #2223
* Improve extras/msvcdeps path handling
* Add extras/clang_cross for cross-compilation using clang
NEW IN WAF 2.0.15
-----------------
* Fix Python path detection under Git-Bash #2217

View File

@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE.
import os, sys, inspect
VERSION="2.0.15"
VERSION="2.0.16"
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=0x2000f00
HEXVERSION=0x2001000
"""Constant updated on new releases"""
WAFVERSION="2.0.15"
WAFVERSION="2.0.16"
"""Constant updated on new releases"""
WAFREVISION="503db290b73ef738a495e0d116d6f8ee0b98dcc2"
WAFREVISION="8cbc8da5ce54dafc16197e468e3578779dcf981d"
"""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.15"
VERSION="2.0.16"
APPNAME='waf'
REVISION=''