diff --git a/ChangeLog b/ChangeLog index 3fe7c0ac..8bb8d07c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +NEW IN WAF 2.0.7 +---------------- +* Apply priorities to dynamically-generated tasks #2137 +* Fix upcoming Python 3.7 incompatibilities #2126 +* Fix Python3 support in extras/xcode6.py #2121 +* Improve priority support in extras/swig.py #2137 +* Improve support extras/protoc.py #2135 +* Improve argument handling in extras/clang_compilation_database.py #2127 +* Add glib DBus bindings in extras/gdbus.py #2134 +* Avoid name collisions for precompiled headers and libraries with similar names in extras/pch.py #2122 + NEW IN WAF 2.0.6 ---------------- * Add Task.deep_inputs to enable further dependencies on input file tasks diff --git a/waf-light b/waf-light index 6a567499..d2c00389 100755 --- a/waf-light +++ b/waf-light @@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE. import os, sys, inspect -VERSION="2.0.6" +VERSION="2.0.7" REVISION="x" GIT="x" INSTALL="x" diff --git a/waflib/Context.py b/waflib/Context.py index 9183d506..25639f85 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=0x2000600 +HEXVERSION=0x2000700 """Constant updated on new releases""" -WAFVERSION="2.0.6" +WAFVERSION="2.0.7" """Constant updated on new releases""" -WAFREVISION="ae907a859e7eb64f527afc2b7be3a9409647c3d4" +WAFREVISION="a4b0b675cfa969c0a32aae6afe0463082bd4c173" """Git revision when the waf version is updated""" ABI = 20 diff --git a/wscript b/wscript index 50057c40..db00ad19 100644 --- a/wscript +++ b/wscript @@ -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.6" +VERSION="2.0.7" APPNAME='waf' REVISION=''