2
0
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:
Waf Project 2024-11-13 03:08:11 +08:00
parent 627780cbb7
commit 89cd97a8d8
No known key found for this signature in database
GPG Key ID: 1BAC571DCD772295
4 changed files with 10 additions and 5 deletions

View File

@ -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

View File

@ -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"

View File

@ -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"

View File

@ -9,7 +9,7 @@ To add a tool that does not exist in the folder compat15, pass an absolute path:
./waf-light --tools=compat15,/comp/waf/aba.py --prelude=$'\tfrom waflib.extras import aba\n\taba.foo()'
"""
VERSION="2.1.3"
VERSION="2.1.4"
APPNAME='waf'
REVISION=''