2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-24 18:59:39 +01:00

waf-1.9.5

This commit is contained in:
Thomas Nagy 2016-10-09 16:28:59 +02:00
parent d5628f1ee6
commit b159ecc44f
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA
4 changed files with 9 additions and 5 deletions

View File

@ -4,6 +4,10 @@ NEW IN WAF 1.9.5
* Add support for older PyQt4 bindings #1813
* Expand properly `--xyz=${VAR}` when `shell=False` #1814
* Add qt5 5.7.x new libraries to qt5 tool #1815
* Add install_user and install_group to bld.install/bld.install_as/bld.symlink_as
* Reduce unnecesary build outputs verbosity #1819 #1828
* Prevent broken console encoding settings from causing additional failures #1823
* Let "waf --zones=argfile" display @argfile contents
NEW IN WAF 1.9.4
----------------

View File

@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE.
import os, sys, inspect
VERSION="1.9.4"
VERSION="1.9.5"
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=0x1090400
HEXVERSION=0x1090500
"""Constant updated on new releases"""
WAFVERSION="1.9.4"
WAFVERSION="1.9.5"
"""Constant updated on new releases"""
WAFREVISION="87974251535099c7a68e712a831fa0e850e60015"
WAFREVISION="d5628f1ee6dfc59eae92cf4d0c20baac5e233599"
"""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.4"
VERSION="1.9.5"
APPNAME='waf'
REVISION=''