Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/SCons/scons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2023-08-27 02:15:40 +0300
committerGitHub <noreply@github.com>2023-08-27 02:15:40 +0300
commit27746b1cbf4d502c22b8d10a19d7e2c26842faf3 (patch)
treecc68b81b16d957082a9006cb154c216580067e22 /RELEASE.txt
parenta9dd05e844e3e508a57f15862199da53328d47ad (diff)
parentf4d343d0f75c78e8b66a5eca14ae5463634fd1c8 (diff)
Merge branch 'master' into pathlib-in-builder
Diffstat (limited to 'RELEASE.txt')
-rw-r--r--RELEASE.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/RELEASE.txt b/RELEASE.txt
index afe095db8..069ca1de9 100644
--- a/RELEASE.txt
+++ b/RELEASE.txt
@@ -61,6 +61,17 @@ CHANGED/ENHANCED EXISTING FUNCTIONALITY
tools are only installed for the 14.3x toolsets.
- Extend range of recognized Java versions to 20.
- Builder calls (like Program()) now accept pathlib objects in source lists.
+- The Help() function now takes an additional keyword argument keep_local:
+ when starting to build a help message, you can now retain help from AddOption
+ calls (options added for the project_, but omit help for SCons' own cmdline
+ options with "Help(newtext, append=True, local_only=True)".
+- Calling SConscript() with a nonexistent file is now an error.
+ Previously this succeeded - prior to SCons 3.0, silently; since 3.0, with
+ a warning. Developers can still instruct such an SConscript() call not
+ to fail by being explicit: pass keyword argument "must_exist=False".
+ The "--warn=missing-sconscript" commandline option is no longer available
+ as the warning was part of the transitional phase.
+- Add missing directories to searched paths for mingw installs
FIXES
-----