Updated the ChangeLog file and the version to 1.7.1

This commit is contained in:
Thomas Nagy 2012-07-29 18:07:31 +02:00
parent 5b542ef5e5
commit a0592ed9b1
4 changed files with 10 additions and 5 deletions

View File

@ -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
----------------
* The compat15 tool is disabled by default (the README file explains how to enable it)

View File

@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE.
import os, sys
VERSION="1.7.0"
VERSION="1.7.1"
REVISION="x"
INSTALL="x"
C1='x'

View File

@ -11,10 +11,10 @@ from waflib import Utils, Errors, Logs
import waflib.Node
# the following 3 constants are updated on each new release (do not touch)
HEXVERSION=0x1070000
HEXVERSION=0x1070100
"""Constant updated on new releases"""
WAFVERSION="1.7.0"
WAFVERSION="1.7.1"
"""Constant updated on new releases"""
WAFREVISION="a7e69d6b81b04729804754c4d5214da063779a65"

View File

@ -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'
REVISION=''
@ -348,7 +348,7 @@ def create_waf(*k, **kw):
if sys.platform != 'win32':
os.chmod('waf', Utils.O755)
os.unlink('%s.tar.%s' % (mw, zipType))
#os.unlink('%s.tar.%s' % (mw, zipType))
def make_copy(inf, outf):
(a, b, cnt) = sfilter(inf)