Prepare for 0.06 release.
authorstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Thu, 28 Mar 2002 08:13:36 +0000 (08:13 +0000)
committerstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Thu, 28 Mar 2002 08:13:36 +0000 (08:13 +0000)
git-svn-id: http://scons.tigris.org/svn/scons/trunk@313 fdb21ef1-2011-0410-befe-b5e4ea1792b1

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

index caf6ba61d4621cc0bf21f4eca358a77a4c27da59..e8e8ef93ce5f1dfc07d4e93ae06a8152f29596c9 100644 (file)
@@ -250,7 +250,7 @@ Or through the download link at the SCons project page at SourceForge:
         http://sourceforge.net/projects/scons/
 
 RPM and Debian packages and a Win32 installer are all available, in
-addition to the traditional .tar.gz files.
+addition to the traditional .tar.gz and .zip files.
 
 
 WHAT'S NEW IN THIS RELEASE?
@@ -282,6 +282,7 @@ Distinctive features of SCons include:
   - improved parallel build (-j) support
   - use of MD5 signatures to decide if a file has changed
   - easily extensible through user-defined Builder and Scanner objects
+  - build actions can be external commands OR internal Python code
 
 An scons-users mailing list has been created for those interested in
 getting started using SCons.  You can subscribe at:
diff --git a/README b/README
index 014b22b3cee81a23fbf456507dad2a5e91697b52..e17ec6bac94bdddedfde5fc59765117a11fada9b 100644 (file)
--- a/README
+++ b/README
@@ -15,8 +15,8 @@ be packaged.
 
 Note that if all you want to do is install and run SCons, it
 will probably be easier for you to download and install the
-scons-{version}.tar.gz package rather than to work with the packaging
-logic in this tree.
+scons-{version}.tar.gz or scons-{version}.zip package rather than to
+work with the packaging logic in this tree.
 
 
 LATEST VERSION
@@ -35,11 +35,11 @@ SCons requires Python version 1.5.2 or later.  There should be no
 other dependencies or requirements to run SCons.
 
 The default SCons configuration assumes use of the Microsoft Visual C++
-compiler suite on WIN32 systems, and assumes a C compiler named 'cc'
-and a C++ compiler named 'c++' (such as found in the GNU C compiler
-suite) on any other type of system.  You may, of course, override these
-default values by appropriate configuration of Environment construction
-variables.
+compiler suite on WIN32 systems, and assumes a C compiler named 'cc',
+a C++ compiler named 'c++', and a Fortran compiler named 'g77' (such
+as found in the GNU C compiler suite) on any other type of system.
+You may, of course, override these default values by appropriate
+configuration of Environment construction variables.
 
 
 INSTALLATION
@@ -48,7 +48,7 @@ INSTALLATION
 To install SCons from this package, you must first populate the
 build/scons/ directory.  (For an easier way to install SCons, without
 having to populate this directory, use the scons-{version}.tar.gz
-package.)
+or scons-{version}.zip package.)
 
 If you already have an appropriate version of SCons installed on your
 system, populate the build/scons/ directory by running:
index c9201e1366729e5fda2f966957f9e629b406df3d..969af859f6d061187b013388216f1e37b2f6e48e 100644 (file)
@@ -2,7 +2,7 @@ scons (0.06-1) unstable; urgency=low
 
   * Sixth Release.
 
- -- Steven Knight <knight@baldmt.com>  Thu, 21 Feb 2002 16:50:03 -0600
+ -- Steven Knight <knight@baldmt.com>  Thu, 28 Mar 2002 01:24:29 -0600
 
 
 scons (0.05-1) unstable; urgency=low
index 93bdb9ff419435662d2dce041dd07d5059669657..c78106bf22ee5e1c74d4ddb30fa538bdd1ef081c 100644 (file)
@@ -8,16 +8,7 @@
 
 
 
-RELEASE 0.06 - 
-
-  From Anthony Roach:
-
-  - Fix:  Construction variables with values of 0 were incorrectly
-    interpolated as ''. 
-
-  - Support env['VAR'] to fetch construction variable values.
-
-  - Man page:  document Precious().
+RELEASE 0.06 - Thu, 28 Mar 2002 01:24:29 -0600
 
   From Charles Crain:
 
@@ -76,6 +67,15 @@ RELEASE 0.06 -
 
   - Add a document builder to create .dvi files from TeX (.tex) files.
 
+  From Anthony Roach:
+
+  - Fix:  Construction variables with values of 0 were incorrectly
+    interpolated as ''. 
+
+  - Support env['VAR'] to fetch construction variable values.
+
+  - Man page:  document Precious().
+
 
 
 RELEASE 0.05 - Thu, 21 Feb 2002 16:50:03 -0600
index dce1089b821b3600fb5c3a40d267c9c783c21536..b4bd42b488b6a7a07c21a147aa98055c76569ab3 100644 (file)
@@ -34,11 +34,11 @@ SCons requires Python version 1.5.2 or later.  There should be no
 other dependencies or requirements to run SCons.
 
 The default SCons configuration assumes use of the Microsoft Visual C++
-compiler suite on WIN32 systems, and assumes a C compiler named 'cc'
-and a C++ compiler named 'c++' (such as found in the GNU C compiler
-suite) on any other type of system.  You may, of course, override these
-default values by appropriate configuration of Environment construction
-variables.
+compiler suite on WIN32 systems, and assumes a C compiler named 'cc',
+a C++ compiler named 'c++', and a Fortran compiler named 'g77' (such
+as found in the GNU C compiler suite) on any other type of system.
+You may, of course, override these default values by appropriate
+configuration of Environment construction variables.
 
 
 INSTALLATION
index 733a2efcdc28ce7e340dc073f3e542743218bd14..9a6a5f88ab8b08e23763c9e2cf6cec64f775b3c4 100644 (file)
@@ -20,7 +20,7 @@ more effectively, please sign up for the scons-users mailing list at:
 
 
 
-RELEASE 0.06 - 
+RELEASE 0.06 - Thu, 28 Mar 2002 01:24:29 -0600
 
   This is the sixth alpha release of SCons.  Please consult the
   CHANGES.txt file for a list of specific changes since last release.
@@ -95,11 +95,10 @@ RELEASE 0.06 -
 
     - Even on officialy Python release 2.2., values greater than 1 for
       the -j option on Windows seemingly hang SCons.  This problem is
-      being investigated and is expected to be fixed for next release.
+      being investigated.
 
     - Extremely long command lines (thousands of characters) can
-      reportedly crash Python.  This problem is being investigated
-      and is expected to be fixed for next release.
+      reportedly crash Python.  This problem is being investigated.
 
     - Again, the "SCons Design" documentation on the SCons web
       site is currently out of date.  Take what you read there with a