mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-29 13:30:32 +01:00
waf-1.9.12
This commit is contained in:
parent
7153756042
commit
a782130a2e
11
ChangeLog
11
ChangeLog
@ -1,3 +1,14 @@
|
||||
NEW IN WAF 1.9.12
|
||||
-----------------
|
||||
* Work around Python 3.6 encoding issues #1974
|
||||
* Handle spaces in python path detection on windows #1973
|
||||
* Set a better default path for windows import libraries #1959
|
||||
* Fix variable propagation for javac targets #1969
|
||||
* Various cpplint enhancements #1961 #1963
|
||||
* Various eclipse project generator enhancements #1967 #1968 #1970
|
||||
* Various C# enhancements #1975 #1976 #1977
|
||||
* Override resx namespaces #1978
|
||||
|
||||
NEW IN WAF 1.9.11
|
||||
-----------------
|
||||
* Detect Visual Studio 2017 Build Tools using vswhere.exe #1945
|
||||
|
@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
import os, sys, inspect
|
||||
|
||||
VERSION="1.9.11"
|
||||
VERSION="1.9.12"
|
||||
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=0x1090b00
|
||||
HEXVERSION=0x1090c00
|
||||
"""Constant updated on new releases"""
|
||||
|
||||
WAFVERSION="1.9.11"
|
||||
WAFVERSION="1.9.12"
|
||||
"""Constant updated on new releases"""
|
||||
|
||||
WAFREVISION="a65c7c03b7012cc6c3fb0f9c9a3be8abc06bc511"
|
||||
WAFREVISION="7641eac6c337687ada2e21655c0202345270cc22"
|
||||
"""Git revision when the waf version is updated"""
|
||||
|
||||
ABI = 99
|
||||
|
Loading…
Reference in New Issue
Block a user