mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-21 17:35:55 +01:00
Preparations for waf 2.0.3
This commit is contained in:
parent
6a80016ad5
commit
2a4c4f0b66
@ -1,3 +1,12 @@
|
||||
NEW IN WAF 2.0.3
|
||||
----------------
|
||||
* Enable install_path=None for Python targets #2087
|
||||
* Prevent duplicate paths when adding from user classpath #2084
|
||||
* Change the unit test summary color scheme to use green and red colors
|
||||
* Improve the deadlock error message
|
||||
* Report sys.path values from Context.load_tool to improve error messages
|
||||
* Cache qrc uic->h conversions to enable qrc re-use across targets
|
||||
|
||||
NEW IN WAF 2.0.2
|
||||
----------------
|
||||
* Improve Intel Fortran compiler detection on Windows #2063
|
||||
|
@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
import os, sys, inspect
|
||||
|
||||
VERSION="2.0.2"
|
||||
VERSION="2.0.3"
|
||||
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=0x2000200
|
||||
HEXVERSION=0x2000300
|
||||
"""Constant updated on new releases"""
|
||||
|
||||
WAFVERSION="2.0.2"
|
||||
WAFVERSION="2.0.3"
|
||||
"""Constant updated on new releases"""
|
||||
|
||||
WAFREVISION="b1efcfa6abfe9c0108d20961769e9dbc7670e761"
|
||||
WAFREVISION="6a80016ad5d49d87712720ce5704198c23c9addf"
|
||||
"""Git revision when the waf version is updated"""
|
||||
|
||||
ABI = 20
|
||||
|
Loading…
Reference in New Issue
Block a user