File tree Expand file tree Collapse file tree 3 files changed +14
-7
lines changed Expand file tree Collapse file tree 3 files changed +14
-7
lines changed Original file line number Diff line number Diff line change @@ -8,16 +8,22 @@ NOTE: The 4.0.0 Release of SCons dropped Python 2.7 Support
8
8
NOTE: 4.3.0 now requires Python 3.6.0 and above. Python 3.5.x is no longer supported
9
9
10
10
RELEASE VERSION/DATE TO BE FILLED IN LATER
11
+
12
+ From Ataf Fazledin Ahamed:
13
+ - Use of NotImplemented instead of NotImplementedError for special methods
14
+ of _ListVariable class
15
+
16
+ From William Deegan:
17
+ - Fix sphinx config to handle SCons versions with post such as: 4.6.0.post1
18
+
11
19
From Michał Górny:
12
20
- Remove unecessary dependencies on pypi packages from setup.cfg
13
21
14
22
From Sten Grüner:
15
23
- Fix of the --debug=sconscript option to return exist statements when using return
16
24
statement with stop flag enabled
17
25
18
- From Ataf Fazledin Ahamed:
19
- - Use of NotImplemented instead of NotImplementedError for special methods
20
- of _ListVariable class
26
+
21
27
22
28
RELEASE 4.6.0 - Sun, 19 Nov 2023 17:22:20 -0700
23
29
Original file line number Diff line number Diff line change @@ -56,10 +56,10 @@ DOCUMENTATION
56
56
DEVELOPMENT
57
57
-----------
58
58
59
- - List visible changes in the way SCons is developed
59
+ - Fix sphinx config to handle SCons versions with post such as: 4.6.0.post1
60
60
61
61
Thanks to the following contributors listed below for their contributions to this release.
62
62
==========================================================================================
63
63
.. code-block:: text
64
64
65
- git shortlog --no-merges -ns 4.0.1 ..HEAD
65
+ git shortlog --no-merges -ns 4.6.0 ..HEAD
Original file line number Diff line number Diff line change 98
98
# The full version, including alpha/beta/rc tags:
99
99
release = __version__
100
100
# The short X.Y version.
101
- major , minor , _ = __version__ .split ('.' )
102
- version = '.' .join ([major , minor ])
101
+ version_parts = __version__ .split ('.' )
102
+ major , minor , patch = version_parts [0 :3 ]
103
+ version = '.' .join ([major , minor ,patch ])
103
104
104
105
# The language for content autogenerated by Sphinx. Refer to documentation
105
106
# for a list of supported languages.
You can’t perform that action at this time.
0 commit comments