mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-24 18:59:39 +01:00
waf-2.0.4
This commit is contained in:
parent
5996879673
commit
7b36a52b4e
10
ChangeLog
10
ChangeLog
@ -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
|
||||
|
@ -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"
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user