waf-2.0.4

This commit is contained in:
Thomas Nagy 2017-12-30 10:36:51 +01:00
parent 5996879673
commit 7b36a52b4e
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA
4 changed files with 15 additions and 5 deletions

View File

@ -1,3 +1,13 @@
NEW IN WAF 2.0.4
----------------
* Enable more advanced warnings of ant_glob on build folders in verbose mode
* Defer node.ant_glob(..., generator=True) evaluation
* Enable 'waf clean' to get the list of files to remove from bld.clean_files
* Define the environment variable WAF_NO_PREFORK to skip pre-forking
* Fix Can't pickle local object '_createenviron.<locals>.encode' exceptions (Python 3.6)
* Improve the Erlang module #2095
* Add task target to parallel_debug outputs #2091
NEW IN WAF 2.0.3
----------------
* Enable install_path=None for Python targets #2087

View File

@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE.
import os, sys, inspect
VERSION="2.0.3"
VERSION="2.0.4"
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=0x2000300
HEXVERSION=0x2000400
"""Constant updated on new releases"""
WAFVERSION="2.0.3"
WAFVERSION="2.0.4"
"""Constant updated on new releases"""
WAFREVISION="f5f4218cdab046b6f55fdb56043752fbe479d614"
WAFREVISION="5996879673deb7166b61a299be317a738de6891e"
"""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.3"
VERSION="2.0.4"
APPNAME='waf'
REVISION=''