File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ NOTE: 4.3.0 now requires Python 3.6.0 and above. Python 3.5.x is no longer suppo
10
10
RELEASE VERSION/DATE TO BE FILLED IN LATER
11
11
12
12
From Mats Wichmann:
13
-
14
13
- Updated Value Node docs and tests.
15
14
- Python 3.13 compat: re.sub deprecated count, flags as positional args,
16
15
caused update-release-info test to fail.
@@ -20,6 +19,12 @@ RELEASE VERSION/DATE TO BE FILLED IN LATER
20
19
- Python 3.13 (alpha) changes the behavior of isabs() on Windows. Adjust
21
20
SCons usage of in NodeInfo classes to match. Fixes #4502, #4504.
22
21
22
+ From Raymond Li:
23
+ - Fix issue #3935: OSErrors are now no longer hidden during execution of
24
+ Actions. All exceptions during the execution of an Action are now
25
+ returned by value rather than by raising an exception, for more
26
+ consistent behavior.
27
+
23
28
24
29
RELEASE 4.7.0 - Sun, 17 Mar 2024 17:22:20 -0700
25
30
Original file line number Diff line number Diff line change @@ -31,11 +31,13 @@ CHANGED/ENHANCED EXISTING FUNCTIONALITY
31
31
json output is also sorted, to match the default display.
32
32
- Python 3.13 changes the behavior of isabs() on Windows. Adjust SCons
33
33
usage of this in NodeInfo classes to avoid test problems.
34
+ - All exceptions during the execution of an Action are now returned by value
35
+ rather than by raising an exception, for more consistent behavior.
34
36
35
37
FIXES
36
38
-----
37
39
38
- - List fixes of outright bugs
40
+ - OSErrors are now no longer hidden during the execution of Actions.
39
41
40
42
IMPROVEMENTS
41
43
------------
You can’t perform that action at this time.
0 commit comments