diff options
author | William Deegan <bill@baddogconsulting.com> | 2020-02-11 19:08:56 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2020-02-11 19:08:56 (GMT) |
commit | 7d80f0ca5f9e752118141bd9c7de9350cd6b8597 (patch) | |
tree | 3f1c5cf61e7c3ad52148ecdf448f340e9265a7d2 | |
parent | c40509ba4e1b466dd03f8984e8169448c6cfa20a (diff) | |
download | SCons-7d80f0ca5f9e752118141bd9c7de9350cd6b8597.zip SCons-7d80f0ca5f9e752118141bd9c7de9350cd6b8597.tar.gz SCons-7d80f0ca5f9e752118141bd9c7de9350cd6b8597.tar.bz2 |
[ci skip] Update CHANGES.txt
-rwxr-xr-x | src/CHANGES.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/CHANGES.txt b/src/CHANGES.txt index 407a83b..b1cc831 100755 --- a/src/CHANGES.txt +++ b/src/CHANGES.txt @@ -18,6 +18,9 @@ RELEASE VERSION/DATE TO BE FILLED IN LATER is a reasonable default and also aligns with changes in Appveyor's VS2019 image. - Drop support for Python 2.7. SCons will be Python 3.5+ going forward. - Change SCons.Node.ValueWithMemo to consider any name passed when memoizing Value() nodes + - Fix Github Issue #3550 - When using Substfile() with a value like Z:\mongo\build\install\bin + the implementation using re.sub() would end up interpreting the string and finding regex escape + characters where it should have been simply replacing existing text. Switched to use string.replace(). From Jeremy Elson: - Updated design doc to use the correct syntax for Depends() |