Prepare the release.
authorstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Wed, 21 May 2003 18:50:52 +0000 (18:50 +0000)
committerstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Wed, 21 May 2003 18:50:52 +0000 (18:50 +0000)
git-svn-id: http://scons.tigris.org/svn/scons/trunk@693 fdb21ef1-2011-0410-befe-b5e4ea1792b1

README
debian/changelog
src/CHANGES.txt
src/RELEASE.txt

diff --git a/README b/README
index 6b5c83a0feb7ffd422e3363ddba30f67a0d72d0f..7a6c85f090a22f7f1ea3f97b8d3b6c8aa63db94c 100644 (file)
--- a/README
+++ b/README
@@ -203,9 +203,9 @@ PACKAGES" section below.
 BUILDING PACKAGES
 =================
 
-We now use SCons (version 0.11 or later) to build its own packages.
-If you already have an appropriate version of SCons installed on your
-system, you can build everything by simply running it:
+We use SCons (version 0.11 or later) to build its own packages.  If you
+already have an appropriate version of SCons installed on your system,
+you can build everything by simply running it:
 
         $ scons
 
index c81ddb4c6dc3427d8b6490f742b220874949b809..6c24dfe0713676f7ca6884d742bc0b9cfe460829 100644 (file)
@@ -2,7 +2,7 @@ scons (0.14-1) unstable; urgency=low
 
   * Eighth post-official-Debian build cycle
 
- -- Steven Knight <knight@baldmt.com>  Mon, 31 Mar 2003 20:22:00 -0600
+ -- Steven Knight <knight@baldmt.com>  Wed, 21 May 2003 05:16:32 -0500
 
 
 scons (0.13-1) unstable; urgency=low
index 1733520a67f766ceaa1a465a8aa7d1b9a6405ba0..99013705bb70d87cfb65367561642445657d610c 100644 (file)
@@ -8,7 +8,7 @@
 
 
 
-RELEASE 0.14 - XXX
+RELEASE 0.14 - Wed, 21 May 2003 05:16:32 -0500
 
   From Chad Austin:
 
index 9cad9f6ec05f72d6f76a6e41e16440b5533ab791..030a642133837a1a3b437178ff9ebe0a03b992a0 100644 (file)
@@ -20,15 +20,18 @@ more effectively, please sign up for the scons-users mailing list at:
 
 
 
-RELEASE 0.14 - XXX
+RELEASE 0.14 - Wed, 21 May 2003 05:16:32 -0500
 
   This is the fourteenth alpha release of SCons.  Please consult the
   CHANGES.txt file for a list of specific changes since last release.
 
   Please note the following important changes since release 0.13:
 
-  - Tool specifications no longer take a "platform" argument.
-    XXX
+  - Tool specifications no longer take a "platform" argument.  You
+    will need to remove this argument if you define any local Tool
+    specifications.  The new env['PLATFORM'] construction variable can
+    now be used to find the string that used to be passed in as the
+    "platform" argument.
 
   - Emitter functions in Builders are now passed Node objects, not
     strings, for all targets and sources.  Your emitter may need to
@@ -55,6 +58,13 @@ RELEASE 0.14 - XXX
     now take a fourth "for_signature" argument that is set when the
     expansion is being called to generate a build signature.
 
+  - Construction variables for building a target are now frozen when the
+    Builder is called; later changes to the Environment do not
+    necessarily affect how the target is build.  You may need to
+    re-order statements in your SConscript files to make sure
+    construction variables are set before calling the Builders that will
+    use them.
+
   Please note the following important changes since release 0.11:
 
   - The default behavior of SCons is now to change to the directory in
@@ -153,9 +163,6 @@ RELEASE 0.14 - XXX
     - Modifying a construction environment in a subsidiary SConscript
       file modifies the global environment.
 
-    - PDB files on Win32 in a build that uses BuildDir() are built in
-      the source directory, not the build directory.
-
     - MSVC .res files are not rebuilt when icons change.
 
     - The -c option does not clean up .sconsign files or directories
@@ -169,6 +176,12 @@ RELEASE 0.14 - XXX
       (for example) \some\target is the same as X:\some\target (for your
       current volume X:).
 
+    - .sconsign files can be written even when the -n option is used,
+      possibly causing incorrect "up to date" builds the next time around.
+
+    - An explicit target beginning with "../" (i.e. above the current
+      directory) is ignored when using the -u, -U or -D options.
+
     - No support yet for the following planned command-line options:
 
          -d -e -l --list-actions --list-derived --list-where
@@ -189,5 +202,6 @@ With plenty of help from the SCons Development team:
         Charles Crain
         Steve Leblanc
         Anthony Roach
-        Terrel Shumway
+        Greg Spencer
+        Christoph Widemann