2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-21 17:35:55 +01:00

waf-2.0.7

This commit is contained in:
Thomas Nagy 2018-03-29 15:00:58 +02:00
parent a4b0b675cf
commit 465a1c7b5c
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA
4 changed files with 16 additions and 5 deletions

View File

@ -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

View File

@ -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"

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=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

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.6"
VERSION="2.0.7"
APPNAME='waf'
REVISION=''