Waf 2.0.24

This commit is contained in:
Thomas Nagy 2022-05-22 11:35:56 +02:00
parent 1af97c71f5
commit 15e04d7a7d
4 changed files with 12 additions and 5 deletions

View File

@ -1,3 +1,10 @@
NEW IN WAF 2.0.24
-----------------
* Use EXT_SUFFIX config var over the deprecated/removed SO (Python 3.11 regression) #2386
* When detecting Visual Studio compilers, prefer the oldest version regardless of compiler type #2352
* Update the MacOS-specific examples #2337
NEW IN WAF 2.0.23
-----------------
* Fix the Qt3D* libraries detection #2368

View File

@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE.
import os, sys, inspect
VERSION="2.0.23"
VERSION="2.0.24"
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=0x2001700
HEXVERSION=0x2001800
"""Constant updated on new releases"""
WAFVERSION="2.0.23"
WAFVERSION="2.0.24"
"""Constant updated on new releases"""
WAFREVISION="cc6b34cf555d354c34f554c41206134072588de7"
WAFREVISION="1af97c71f5a6756abf36d0f78ed8fd551596d7cb"
"""Git revision when the waf version is updated"""
WAFNAME="waf"

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.23"
VERSION="2.0.24"
APPNAME='waf'
REVISION=''