mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-22 09:57:15 +01:00
Updated the ChangeLog file and the version to 1.7.1
This commit is contained in:
parent
5b542ef5e5
commit
a0592ed9b1
@ -1,3 +1,8 @@
|
|||||||
|
NEW IN WAF 1.7.1
|
||||||
|
----------------
|
||||||
|
* Updated the exclusion regexps for "waf dist"
|
||||||
|
* Added an example in playground/nasm
|
||||||
|
|
||||||
NEW IN WAF 1.7.0
|
NEW IN WAF 1.7.0
|
||||||
----------------
|
----------------
|
||||||
* The compat15 tool is disabled by default (the README file explains how to enable it)
|
* The compat15 tool is disabled by default (the README file explains how to enable it)
|
||||||
|
@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||||||
|
|
||||||
import os, sys
|
import os, sys
|
||||||
|
|
||||||
VERSION="1.7.0"
|
VERSION="1.7.1"
|
||||||
REVISION="x"
|
REVISION="x"
|
||||||
INSTALL="x"
|
INSTALL="x"
|
||||||
C1='x'
|
C1='x'
|
||||||
|
@ -11,10 +11,10 @@ from waflib import Utils, Errors, Logs
|
|||||||
import waflib.Node
|
import waflib.Node
|
||||||
|
|
||||||
# the following 3 constants are updated on each new release (do not touch)
|
# the following 3 constants are updated on each new release (do not touch)
|
||||||
HEXVERSION=0x1070000
|
HEXVERSION=0x1070100
|
||||||
"""Constant updated on new releases"""
|
"""Constant updated on new releases"""
|
||||||
|
|
||||||
WAFVERSION="1.7.0"
|
WAFVERSION="1.7.1"
|
||||||
"""Constant updated on new releases"""
|
"""Constant updated on new releases"""
|
||||||
|
|
||||||
WAFREVISION="a7e69d6b81b04729804754c4d5214da063779a65"
|
WAFREVISION="a7e69d6b81b04729804754c4d5214da063779a65"
|
||||||
|
4
wscript
4
wscript
@ -10,7 +10,7 @@ To add a tool that does not exist in the folder compat15, pass an absolute path:
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
VERSION="1.7.0"
|
VERSION="1.7.1"
|
||||||
APPNAME='waf'
|
APPNAME='waf'
|
||||||
REVISION=''
|
REVISION=''
|
||||||
|
|
||||||
@ -348,7 +348,7 @@ def create_waf(*k, **kw):
|
|||||||
|
|
||||||
if sys.platform != 'win32':
|
if sys.platform != 'win32':
|
||||||
os.chmod('waf', Utils.O755)
|
os.chmod('waf', Utils.O755)
|
||||||
os.unlink('%s.tar.%s' % (mw, zipType))
|
#os.unlink('%s.tar.%s' % (mw, zipType))
|
||||||
|
|
||||||
def make_copy(inf, outf):
|
def make_copy(inf, outf):
|
||||||
(a, b, cnt) = sfilter(inf)
|
(a, b, cnt) = sfilter(inf)
|
||||||
|
Loading…
Reference in New Issue
Block a user