waf 1.9.2

This commit is contained in:
Thomas Nagy 2016-07-31 18:39:33 +02:00
parent a76388b632
commit 332f3c5665
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA
4 changed files with 11 additions and 7 deletions

View File

@ -1,10 +1,14 @@
NEW IN WAF 1.9.2
----------------
* Python 3 fix for waf dist encoding message #1769
* Fix a Python 3 encoding error when displaying the file hash in 'waf dist' #1769
* Force qt5 static library detection with 'QT5_XCOMPILE=1 QT5_FORCE_STATIC=1 waf configure' #1588
* Remove the non-BSD code from the Waf archive file
* Force the parent os.environ value as default in pre-forked processes #1791
* Support flexflags as arguments #1782
* Update a few extensions: xcode, pytest, msvcdeps, cppcheck, win32_opts, codelite
* Store Task.last_cmd selectively, so that extensions can use them (clang_compilation_database)
* Set TaskBase.keep_last_cmd to keep the last command executed
* New pyqt5 extension #1790
* Remove all non-BSD code from the Waf archive file
NEW IN WAF 1.9.1
----------------

View File

@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE.
import os, sys, inspect
VERSION="1.9.1"
VERSION="1.9.2"
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=0x1090100
HEXVERSION=0x1090200
"""Constant updated on new releases"""
WAFVERSION="1.9.1"
WAFVERSION="1.9.2"
"""Constant updated on new releases"""
WAFREVISION="01898507103a0952e277d2afb9d98993482251ed"
WAFREVISION="a76388b63298b4b621c2c89373a8cd4a7e761454"
"""Git revision when the waf version is updated"""
ABI = 99

View File

@ -9,7 +9,7 @@ To add a tool that does not exist in the folder compat15, pass an absolute path:
./waf-light --tools=compat15,/comp/waf/aba.py --prelude=$'\tfrom waflib.extras import aba\n\taba.foo()'
"""
VERSION="1.9.1"
VERSION="1.9.2"
APPNAME='waf'
REVISION=''