waf-2.0.17

This commit is contained in:
Thomas Nagy 2019-06-02 09:45:17 +02:00
parent 3e605feb72
commit 36898e12af
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA
4 changed files with 12 additions and 5 deletions

View File

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

View File

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

View File

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

View File

@ -11,7 +11,7 @@ To add a tool that does not exist in the folder compat15, pass an absolute path:
from __future__ import with_statement
VERSION="2.0.16"
VERSION="2.0.17"
APPNAME='waf'
REVISION=''