diff options
author | Steven Knight <knight@baldmt.com> | 2008-12-21 16:01:54 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2008-12-21 16:01:54 (GMT) |
commit | 0178900d41aabd0e55624e35f270f115ed4e3b72 (patch) | |
tree | 6e8e10801c18620bd7cce52678e5ef60ef9ebe2b /src/RELEASE.txt | |
parent | a3057fff3672fbf78ea3d80332e69b7291995bbf (diff) | |
download | SCons-0178900d41aabd0e55624e35f270f115ed4e3b72.zip SCons-0178900d41aabd0e55624e35f270f115ed4e3b72.tar.gz SCons-0178900d41aabd0e55624e35f270f115ed4e3b72.tar.bz2 |
Merged revisions 3611-3763,3765-3794,3796-3811,3813-3839,3841-3847 via svnmerge from
http://scons.tigris.org/svn/scons/checkpoint
................
r3765 | stevenknight | 2008-11-04 07:57:03 -0800 (Tue, 04 Nov 2008) | 2 lines
Update release info for checkpoint.
................
r3796 | stevenknight | 2008-11-25 21:56:26 -0800 (Tue, 25 Nov 2008) | 2 lines
Updates for 20081125 checkpoint release.
................
r3797 | stevenknight | 2008-11-26 08:21:04 -0800 (Wed, 26 Nov 2008) | 2 lines
User's Guide updates for changes to error messages.
................
r3813 | stevenknight | 2008-12-07 19:13:17 -0800 (Sun, 07 Dec 2008) | 2 lines
Update lines for the 20081207 checkpoint release (candidate for 1.2.0).
................
r3814 | stevenknight | 2008-12-07 19:35:09 -0800 (Sun, 07 Dec 2008) | 2 lines
Update troubleshoot.xml for the changes to taskmastertrace output.
................
r3847 | stevenknight | 2008-12-21 07:57:50 -0800 (Sun, 21 Dec 2008) | 9 lines
Merged revisions 3610-3840,3842-3846 via svnmerge from
http://scons.tigris.org/svn/scons/release
........
r3842 | stevenknight | 2008-12-20 22:48:14 -0800 (Sat, 20 Dec 2008) | 2 lines
Update files for 1.2.0.
........
................
Diffstat (limited to 'src/RELEASE.txt')
-rw-r--r-- | src/RELEASE.txt | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/src/RELEASE.txt b/src/RELEASE.txt index 223beb1..0a8b14a 100644 --- a/src/RELEASE.txt +++ b/src/RELEASE.txt @@ -20,7 +20,7 @@ more effectively, please sign up for the scons-users mailing list at: -RELEASE XXX - +RELEASE 1.2.0 - Sat, 20 Dec 2008 22:47:29 -0800 Please consult the CHANGES.txt file for a list of specific changes since last release. @@ -46,6 +46,35 @@ RELEASE XXX - to ensure that the configuration continues to work with future versions of SCons. + -- THE Options OBJECT AND RELATED FUNCTIONS NOW GENERATE WARNINGS + + Use of the Options object, and related functions BoolOption(), + EnumOption(), ListOption(), PackageOption() and PathOption() + were announced as deprecated in release 0.98.1. Since then, + however, no warning messages were ever implemented for the + use of these deprecated functions. + + By default, release 1.2.0 prints warning messages when these + deprecated features are used. Warnings about all deprecated + features may be suppressed by using the --warn=no-deprecated + command-line option: + + $ scons --warn=no-deprecated + + Or by using the appropriate SetOption() call in any SConscript + file: + + SetOption('warn', 'no-deprecated') + + You may optionally disable just warnings about the deprecation + of the Options object and its related functions as follows: + + SetOption('warn', 'no-deprecated-options') + + The current plan is for these warnings to become mandatory + (non-suppressible) in release 1.3.0, and for the use of Options + and its related functions to generate errors in release 2.0. + Please note the following important changes since release 0.98.4: -- scons.bat NOW RETURNS THE REAL SCONS EXIT STATUS |