mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-21 09:27:17 +01:00
waf-2.1.4
This commit is contained in:
parent
627780cbb7
commit
89cd97a8d8
@ -1,3 +1,8 @@
|
||||
NEW IN WAF 2.1.4
|
||||
----------------
|
||||
* Prevent subprocesses from disrupting the main build process through inherited stdin
|
||||
* Fix a regression that prevents displaying help from custom commands
|
||||
|
||||
NEW IN WAF 2.1.3
|
||||
----------------
|
||||
* Work around a race condition in mingw Python
|
||||
|
@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
import os, sys, inspect
|
||||
|
||||
VERSION="2.1.3"
|
||||
VERSION="2.1.4"
|
||||
REVISION="x"
|
||||
GIT="x"
|
||||
INSTALL="x"
|
||||
|
@ -18,13 +18,13 @@ else:
|
||||
import imp
|
||||
|
||||
# the following 3 constants are updated on each new release (do not touch)
|
||||
HEXVERSION=0x2010300
|
||||
HEXVERSION=0x2010400
|
||||
"""Constant updated on new releases"""
|
||||
|
||||
WAFVERSION="2.1.3"
|
||||
WAFVERSION="2.1.4"
|
||||
"""Constant updated on new releases"""
|
||||
|
||||
WAFREVISION="ee9a11d51e94d31c548fd5b6a8103c68327b3354"
|
||||
WAFREVISION="627780cbb74b86b31016c822dcf2b0bfcbb337cb"
|
||||
"""Git revision when the waf version is updated"""
|
||||
|
||||
WAFNAME="waf"
|
||||
|
Loading…
Reference in New Issue
Block a user