@@ -33,6 +33,7 @@ CHANGED/ENHANCED EXISTING FUNCTIONALITY
33
33
that the generated function argument list matches the function's
34
34
prototype when including a header file. Fixes GH Issue #4320
35
35
- Now supports pre-release Python 3.13
36
+ - Support for Python versions without support for the `threading` package has been removed
36
37
37
38
FIXES
38
39
-----
@@ -49,12 +50,24 @@ FIXES
49
50
- MSVS: Fix the msvs project generation test scripts so that "false positive" tests
50
51
results are not possible when the initial build is successful and the command-line
51
52
build of the project file fails.
53
+ - On Windows platform, when collecting command output (Configure checks),
54
+ make sure decoding of bytes doesn't fail.
55
+ - Documentation indicated that both Pseudo() and env.Pseudo() were usable,
56
+ but Pseudo() did not work; is now enabled.
52
57
53
58
IMPROVEMENTS
54
59
------------
55
60
56
61
- Use of NotImplemented instead of NotImplementedError for special methods
57
62
of _ListVariable class
63
+ - The NewParallel scheduler is now the default, the `tm_v2` flag is removed,
64
+ and the old scheduler is opt-in under `--experimental=legacy_sched`. Additionally,
65
+ the new scheduler is now used for -j1 builds as well.
66
+ NOTE: This should significantly improve SCons performance for larger parallel builds
67
+ (Larger -j values)
68
+ - CacheDir writes no longer happen within the taskmaster critical section, and therefore
69
+ can run in parallel with both other CacheDir writes and the taskmaster DAG walk.
70
+
58
71
59
72
PACKAGING
60
73
---------
@@ -64,9 +77,9 @@ PACKAGING
64
77
DOCUMENTATION
65
78
-------------
66
79
67
- - List any significant changes to the documentation (not individual
68
- typo fixes, even if they're mentioned in src/CHANGES.txt to give
69
- the contributor credit)
80
+ - Fixed the Scanner examples in the User Guide to be runnable and added
81
+ some more explantion. Clarified discussion of the scanner function in
82
+ the Scanner Objects section of the manpage.
70
83
71
84
DEVELOPMENT
72
85
-----------
0 commit comments