diff options
author | Adam Gross <grossag@vmware.com> | 2020-08-04 13:11:17 (GMT) |
---|---|---|
committer | Adam Gross <grossag@vmware.com> | 2020-08-04 13:11:17 (GMT) |
commit | a1bd89e2ad398574b060976f7f2f1030c5f3585a (patch) | |
tree | f22d3b7faa4f5304a7be73af21cdc97ee24c981e /CHANGES.txt | |
parent | 288dbba1d5e70dc0d553d97795a5dc4cfa90f3c0 (diff) | |
download | SCons-a1bd89e2ad398574b060976f7f2f1030c5f3585a.zip SCons-a1bd89e2ad398574b060976f7f2f1030c5f3585a.tar.gz SCons-a1bd89e2ad398574b060976f7f2f1030c5f3585a.tar.bz2 |
Fix rebase issue with CHANGES.txt
Rebasing off of master put my CHANGES.txt addition in an old release.
This commit moves it up to the correct section.
Diffstat (limited to 'CHANGES.txt')
-rwxr-xr-x | CHANGES.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 0135ea4..9abf2bf 100755 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -15,6 +15,10 @@ RELEASE VERSION/DATE TO BE FILLED IN LATER From Adam Gross: - Fix minor bug affecting SCons.Node.FS.File.get_csig()'s usage of the MD5 chunksize. User-facing behavior does not change with this fix (GH Issue #3726). + - Added support for a new command-line parameter "--hash-format" to override the default + hash format that SCons uses. It can also be set via SetOption('hash_format'). Supported + values include md5, sha1, and sha256, but you can also use any other algorithm that is + offered by your Python interpreter's hashlib package. From Mats Wichmann: - Complete tests for Dictionary, env.keys() and env.values() for @@ -134,10 +138,6 @@ RELEASE 4.0.0 - Sat, 04 Jul 2020 12:00:27 +0000 when the value can't be converted to a string or if having a name is otherwise desirable. - Fixed usage of abspath and path for RootDir objects on Windows. Previously env.fs.Dir("T:").abspath would return "T:\T:" and now it correctly returns "T:". - - Added support for a new command-line parameter "--hash-format" to override the default - hash format that SCons uses. It can also be set via SetOption('hash_format'). Supported - values include md5, sha1, and sha256, but you can also use any other algorithm that is - offered by your Python interpreter's hashlib package. From Ivan Kravets, PlatformIO - New conditional C Scanner (`SCons.Scanner.C.CConditionalScanner()`) |