diff --git a/ChangeLog b/ChangeLog index 7d104173..23e75ed7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 ---------------- diff --git a/waf-light b/waf-light index 437761d3..d6fbc6fd 100755 --- a/waf-light +++ b/waf-light @@ -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" diff --git a/waflib/Context.py b/waflib/Context.py index 3a65e986..cd60c8b6 100644 --- a/waflib/Context.py +++ b/waflib/Context.py @@ -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 diff --git a/wscript b/wscript index 5c97c588..d08c0e27 100644 --- a/wscript +++ b/wscript @@ -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=''