From c2d1f09f615a9ef3fb5497a7e8e5ee2c900d21a7 Mon Sep 17 00:00:00 2001 From: William Deegan Date: Wed, 17 Nov 2021 16:05:45 +0000 Subject: 4.3.0 updates --- CHANGES.txt | 2 +- RELEASE.txt | 2 ++ SCons/Script/Main.py | 2 +- SCons/__init__.py | 12 ++++++------ bin/upload-release-files.sh | 6 +++--- doc/generated/examples/caching_ex-random_1.xml | 4 ++-- 6 files changed, 15 insertions(+), 13 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 8cab65f89..5cd2c1486 100755 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -5,7 +5,7 @@ Change Log NOTE: The 4.0.0 Release of SCons dropped Python 2.7 Support -NOTE: The 4.2.0 Release of SCons will deprecate Python 3.5 Support. Python 3.5 support will be dropped in the next major release. +NOTE: 4.3.0 now requires Python 3.6.0 and above. Python 3.5.x is no longer supported RELEASE 4.3.0 - Tue, 16 Nov 2021 18:12:46 -0700 diff --git a/RELEASE.txt b/RELEASE.txt index 0d18ae2d0..904ccc986 100755 --- a/RELEASE.txt +++ b/RELEASE.txt @@ -4,6 +4,8 @@ on the SCons download page: https://scons.org/pages/download.html +NOTE: 4.3.0 now requires Python 3.6.0 and above. Python 3.5.x is no longer supported + Here is a summary of the changes since 4.2.0: NEW FUNCTIONALITY diff --git a/SCons/Script/Main.py b/SCons/Script/Main.py index 9aaa289db..1b177064a 100644 --- a/SCons/Script/Main.py +++ b/SCons/Script/Main.py @@ -32,7 +32,7 @@ it goes here. """ # these define the range of versions SCons supports -unsupported_python_version = (3, 4, 0) +unsupported_python_version = (3, 5, 0) deprecated_python_version = (3, 6, 0) import SCons.compat diff --git a/SCons/__init__.py b/SCons/__init__.py index e74eea03a..c95386a33 100644 --- a/SCons/__init__.py +++ b/SCons/__init__.py @@ -1,9 +1,9 @@ -__version__="4.2.0" +__version__="4.3.0" __copyright__="Copyright (c) 2001 - 2021 The SCons Foundation" -__developer__="bdbaddog" -__date__="Sat, 31 Jul 2021 18:12:46 -0700" -__buildsys__="ProDog2020" -__revision__="fcdadeef19fe5fead09fa7544a27502be65312be" -__build__="fcdadeef19fe5fead09fa7544a27502be65312be" +__developer__="bdeegan" +__date__="Tue, 16 Nov 2021 19:09:21 +0000" +__buildsys__="octodog" +__revision__="559790274f66fa55251f5754de34820a29c7327a" +__build__="559790274f66fa55251f5754de34820a29c7327a" # make sure compatibility is always in place import SCons.compat # noqa \ No newline at end of file diff --git a/bin/upload-release-files.sh b/bin/upload-release-files.sh index 76bda4b7f..607512ebc 100755 --- a/bin/upload-release-files.sh +++ b/bin/upload-release-files.sh @@ -18,7 +18,7 @@ SF_TOPDIR='/home/frs/project/scons' # the build products are here: cd build/dist cp -f ../../CHANGES.txt ../../RELEASE.txt . -cp -f ../../README-sf.rst ./README.rst +cp -f ../../README-SF.rst ./README.rst set -x @@ -30,8 +30,8 @@ $RSYNC $RSYNCOPTS\ # Upload main scons release files: $RSYNC $RSYNCOPTS \ - scons-$VERSION.tar.gz \ - scons-$VERSION.zip \ + SCons-$VERSION.tar.gz \ + SCons-$VERSION.zip \ CHANGES.txt RELEASE.txt \ $SF_USER@$SF_MACHINE:$SF_TOPDIR/scons/$VERSION/ diff --git a/doc/generated/examples/caching_ex-random_1.xml b/doc/generated/examples/caching_ex-random_1.xml index 814712bb6..b75153439 100644 --- a/doc/generated/examples/caching_ex-random_1.xml +++ b/doc/generated/examples/caching_ex-random_1.xml @@ -1,8 +1,8 @@ % scons -Q -cc -o f4.o -c f4.c -cc -o f3.o -c f3.c cc -o f5.o -c f5.c cc -o f2.o -c f2.c +cc -o f4.o -c f4.c cc -o f1.o -c f1.c +cc -o f3.o -c f3.c cc -o prog f1.o f2.o f3.o f4.o f5.o -- cgit v1.2.1