mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-21 17:35:55 +01:00
waf-2.0.11
This commit is contained in:
parent
a97f6fb094
commit
fe03c6fa47
@ -1,3 +1,10 @@
|
||||
NEW IN WAF 2.0.11
|
||||
-----------------
|
||||
* Do not raise an exception on check_cfg/mandatory=False/-vv #2193
|
||||
* Post past task generators in lazy sub-folder builds #2191
|
||||
* Disable warnings on versioned library installation
|
||||
* Fix cpplint concurrent execution problems
|
||||
|
||||
NEW IN WAF 2.0.10
|
||||
-----------------
|
||||
* Add a task semaphore system
|
||||
|
@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
import os, sys, inspect
|
||||
|
||||
VERSION="2.0.10"
|
||||
VERSION="2.0.11"
|
||||
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=0x2000a00
|
||||
HEXVERSION=0x2000b00
|
||||
"""Constant updated on new releases"""
|
||||
|
||||
WAFVERSION="2.0.10"
|
||||
WAFVERSION="2.0.11"
|
||||
"""Constant updated on new releases"""
|
||||
|
||||
WAFREVISION="31a5fa38292b9bd9fd3283ce5b1b401662e19a10"
|
||||
WAFREVISION="a97f6fb0941091b4966b625f15ec32fa783a8bec"
|
||||
"""Git revision when the waf version is updated"""
|
||||
|
||||
ABI = 20
|
||||
|
Loading…
Reference in New Issue
Block a user