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:
parent
a4b0b675cf
commit
465a1c7b5c
11
ChangeLog
11
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
|
||||
|
@ -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"
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user