diff options
author | William Deegan <bill@baddogconsulting.com> | 2023-11-20 00:07:08 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2023-11-20 00:07:08 (GMT) |
commit | e5eef322a4a727b96358a436dca46e8085ac8692 (patch) | |
tree | b30615d364b91f78243699c7284dc22c030e3bdf | |
parent | a99c8a83bc2bdbf547a8559b2d451d762d9c30b4 (diff) | |
download | SCons-e5eef322a4a727b96358a436dca46e8085ac8692.zip SCons-e5eef322a4a727b96358a436dca46e8085ac8692.tar.gz SCons-e5eef322a4a727b96358a436dca46e8085ac8692.tar.bz2 |
Updates to RELEASE.txt including notice about switching default parallel scheduler in next major release
-rw-r--r-- | CHANGES.txt | 3 | ||||
-rw-r--r-- | RELEASE.txt | 25 | ||||
-rwxr-xr-x | ReleaseConfig | 2 | ||||
-rw-r--r-- | SCons/__init__.py | 8 |
4 files changed, 19 insertions, 19 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index a68c4fc..d968f06 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -7,7 +7,8 @@ NOTE: The 4.0.0 Release of SCons dropped Python 2.7 Support NOTE: 4.3.0 now requires Python 3.6.0 and above. Python 3.5.x is no longer supported -RELEASE VERSION/DATE TO BE FILLED IN LATER +RELEASE 4.6.0 - Sat, 18 Nov 2023 16:41:23 -0700 + From Max Bachmann: - Add missing directories to searched paths for mingw installs diff --git a/RELEASE.txt b/RELEASE.txt index 232d61f..26f1d5d 100644 --- a/RELEASE.txt +++ b/RELEASE.txt @@ -1,12 +1,4 @@ -If you are reading this in the git repository, the contents -refer to *unreleased* changes since the last SCons release. -Past official release announcements appear at: - - https://scons.org/tag/releases.html - -================================================================== - -A new SCons release, 4.5.3, is now available on the SCons download page: +A new SCons release, 4.6.0, is now available on the SCons download page: https://scons.org/pages/download.html @@ -27,10 +19,6 @@ NEW FUNCTIONALITY prefix for considering a library argument unmodified (e.g. for the GNU linker, the ':' in '-l:libfoo.a'). Fixes Github issue #3951. -DEPRECATED FUNCTIONALITY ------------------------- - -- List anything that's been deprecated since the last release CHANGED/ENHANCED EXISTING FUNCTIONALITY --------------------------------------- @@ -181,3 +169,14 @@ Thanks to the following contributors listed below for their contributions to thi .. code-block:: text git shortlog --no-merges -ns 4.5.2..HEAD + 97 Mats Wichmann + 39 William Deegan + 20 Joseph Brill + 12 Alex Burton + 4 StenGruener + 2 Jonathon Reinhart + 2 LiuYinCarl + 2 Max Bachmann + 1 Kenshin + 1 Shohei YOSHIDA + 1 Vitaly Cheptsov diff --git a/ReleaseConfig b/ReleaseConfig index 7cec710..0974543 100755 --- a/ReleaseConfig +++ b/ReleaseConfig @@ -31,7 +31,7 @@ # If the release type is not 'final', the patchlevel is set to the # release date. This value is mandatory and must be present in this file. #version_tuple = (2, 2, 0, 'final', 0) -version_tuple = (4, 5, 3, 'a', 0) +version_tuple = (4,6,0) # Python versions prior to unsupported_python_version cause a fatal error # when that version is used. Python versions prior to deprecate_python_version diff --git a/SCons/__init__.py b/SCons/__init__.py index 29176c1..c92847d 100644 --- a/SCons/__init__.py +++ b/SCons/__init__.py @@ -1,9 +1,9 @@ -__version__="4.5.3" +__version__="4.6.0" __copyright__="Copyright (c) 2001 - 2023 The SCons Foundation" __developer__="bdbaddog" -__date__="Sat, 28 Oct 2023 17:40:01 -0700" +__date__="Sat, 18 Nov 2023 16:55:59 -0700" __buildsys__="M1Dog2021" -__revision__="a790daf8d878aef83937723e1fb1017fd86875f2" -__build__="a790daf8d878aef83937723e1fb1017fd86875f2" +__revision__="a99c8a83bc2bdbf547a8559b2d451d762d9c30b4" +__build__="a99c8a83bc2bdbf547a8559b2d451d762d9c30b4" # make sure compatibility is always in place import SCons.compat # noqa
\ No newline at end of file |