mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-21 17:35:55 +01:00
waf-2.0.17
This commit is contained in:
parent
3e605feb72
commit
36898e12af
@ -1,3 +1,10 @@
|
||||
NEW IN WAF 2.0.17
|
||||
-----------------
|
||||
* Improve build performance on FreeBSD and Python3 #2241
|
||||
* Add Python 3.8 flag detection for building embedded interpreters #2239
|
||||
* Prevent Qt5 uninstallation errors when c++ files are generated
|
||||
* Improve installation/uninstallation colors
|
||||
|
||||
NEW IN WAF 2.0.16
|
||||
-----------------
|
||||
* Fix task semaphore errors on stateful tasks #2232
|
||||
|
@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
import os, sys, inspect
|
||||
|
||||
VERSION="2.0.16"
|
||||
VERSION="2.0.17"
|
||||
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=0x2001000
|
||||
HEXVERSION=0x2001100
|
||||
"""Constant updated on new releases"""
|
||||
|
||||
WAFVERSION="2.0.16"
|
||||
WAFVERSION="2.0.17"
|
||||
"""Constant updated on new releases"""
|
||||
|
||||
WAFREVISION="8cbc8da5ce54dafc16197e468e3578779dcf981d"
|
||||
WAFREVISION="6bc6cb599c702e985780e9f705b291b812123693"
|
||||
"""Git revision when the waf version is updated"""
|
||||
|
||||
ABI = 20
|
||||
|
Loading…
Reference in New Issue
Block a user