waf-2.0.22

This commit is contained in:
Thomas Nagy 2021-01-30 16:41:29 +01:00
parent 816d5bc48b
commit 3f8bb16329
No known key found for this signature in database
GPG Key ID: 22BE0C62FFBFA548
4 changed files with 18 additions and 5 deletions

View File

@ -1,3 +1,16 @@
NEW IN WAF 2.0.22
-----------------
* Fix stdin propagation with faulty vcvarsall scripts #2315
* Enable mixing Unix-style paths with destdir on Windows platforms #2337
* Fix shell escaping unit test parameters #2314
* Improve extras/clang_compilation_database and extras/swig compatibility #2336
* Propagate C++ flags to the Cuda compiler in extras/cuda #2311
* Fix detection of Qt 5.0.0 (preparation for Qt6) #2331
* Enable Haxe processing #2308
* Fix regression in MACOSX_DEPLOYMENT_TARGET caused by distutils #2330
* Fix extras/wafcache concurrent trimming issues #2312
* Fix extras/wafcache symlink handling #2327
NEW IN WAF 2.0.21
-----------------
* Set the default --msvc_version from VSCMD_VER if present #2299

View File

@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE.
import os, sys, inspect
VERSION="2.0.21"
VERSION="2.0.22"
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=0x2001500
HEXVERSION=0x2001600
"""Constant updated on new releases"""
WAFVERSION="2.0.21"
WAFVERSION="2.0.22"
"""Constant updated on new releases"""
WAFREVISION="edde20a6425a5c3eb6b47d5f3f5c4fbc93fed5f4"
WAFREVISION="816d5bc48ba2abc4ac22f2b44d94d322bf992b9c"
"""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.21"
VERSION="2.0.22"
APPNAME='waf'
REVISION=''