diff options
author | William Deegan <bill@baddogconsulting.com> | 2019-01-20 22:51:22 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2019-01-20 22:51:22 (GMT) |
commit | 3a41ed6b288cee8d085373ad7fa02894e1903864 (patch) | |
tree | b8c1a4d1220f635ea39805d99d9978558db41e58 | |
parent | d936671a277346ea575a4ba1422ab06c4b8c9ad8 (diff) | |
download | SCons-3a41ed6b288cee8d085373ad7fa02894e1903864.zip SCons-3a41ed6b288cee8d085373ad7fa02894e1903864.tar.gz SCons-3a41ed6b288cee8d085373ad7fa02894e1903864.tar.bz2 |
Updated files per ReleaseConfig for 3.0.4 release
-rwxr-xr-x | README.rst | 14 | ||||
-rwxr-xr-x | ReleaseConfig | 2 | ||||
-rw-r--r-- | SConstruct | 2 | ||||
-rwxr-xr-x | src/Announce.txt | 2 | ||||
-rwxr-xr-x | src/CHANGES.txt | 2 | ||||
-rwxr-xr-x | src/RELEASE.txt | 2 | ||||
-rw-r--r-- | testing/framework/TestSCons.py | 2 |
7 files changed, 13 insertions, 13 deletions
@@ -499,13 +499,13 @@ about `Executing SCons Without Installing`_):: Depending on the utilities installed on your system, any or all of the following packages will be built:: - build/dist/scons-3.0.3.tar.gz - build/dist/scons-3.0.3.zip - build/dist/scons-doc-3.0.3.tar.gz - build/dist/scons-local-3.0.3.tar.gz - build/dist/scons-local-3.0.3.zip - build/dist/scons-src-3.0.3.tar.gz - build/dist/scons-src-3.0.3.zip + build/dist/scons-3.0.4.tar.gz + build/dist/scons-3.0.4.zip + build/dist/scons-doc-3.0.4.tar.gz + build/dist/scons-local-3.0.4.tar.gz + build/dist/scons-local-3.0.4.zip + build/dist/scons-src-3.0.4.tar.gz + build/dist/scons-src-3.0.4.zip The SConstruct file is supposed to be smart enough to avoid trying to build packages for which you don't have the proper utilities installed. For diff --git a/ReleaseConfig b/ReleaseConfig index 900e8b5..01440ba 100755 --- a/ReleaseConfig +++ b/ReleaseConfig @@ -32,7 +32,7 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" # '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 = (3, 0, 4, 'alpha', 0) +version_tuple = (3, 0, 4) # Python versions prior to unsupported_python_version cause a fatal error # when that version is used. Python versions prior to deprecate_python_version @@ -51,7 +51,7 @@ import textwrap import bootstrap project = 'scons' -default_version = '3.0.3' +default_version = '3.0.4' copyright = "Copyright (c) %s The SCons Foundation" % copyright_years SConsignFile() diff --git a/src/Announce.txt b/src/Announce.txt index 7eb57ae..6558faa 100755 --- a/src/Announce.txt +++ b/src/Announce.txt @@ -18,7 +18,7 @@ So that everyone using SCons can help each other learn how to use it more effectively, please go to http://scons.org/lists.html#users to sign up for the scons-users mailing list. -RELEASE VERSION/DATE TO BE FILLED IN LATER +RELEASE 3.0.4 - Mon, 20 Jan 2019 22:49:27 +0000 Please consult the RELEASE.txt file for a summary of changes since the last release and consult the CHANGES.txt file for complete a list of changes diff --git a/src/CHANGES.txt b/src/CHANGES.txt index 64f02cb..43a7725 100755 --- a/src/CHANGES.txt +++ b/src/CHANGES.txt @@ -5,7 +5,7 @@ Change Log -RELEASE VERSION/DATE TO BE FILLED IN LATER +RELEASE 3.0.4 - Mon, 20 Jan 2019 22:49:27 +0000 From Mats Wichmann: - Improve finding of Microsoft compiler: add a 'products' wildcard diff --git a/src/RELEASE.txt b/src/RELEASE.txt index c5b6203..f117758 100755 --- a/src/RELEASE.txt +++ b/src/RELEASE.txt @@ -1,4 +1,4 @@ - A new SCons checkpoint release, 3.0.4.alpha.yyyymmdd, is now available + A new SCons release, 3.0.4, is now available on the SCons download page: http://www.scons.org/download.php diff --git a/testing/framework/TestSCons.py b/testing/framework/TestSCons.py index b543c07..38ffd08 100644 --- a/testing/framework/TestSCons.py +++ b/testing/framework/TestSCons.py @@ -35,7 +35,7 @@ from TestCmd import PIPE # here provides some independent verification that what we packaged # conforms to what we expect. -default_version = '3.0.3' +default_version = '3.0.4' python_version_unsupported = (2, 6, 0) python_version_deprecated = (2, 7, 0) |