Prepare for release.
[scons.git] / src / CHANGES.txt
1 # Copyright (c) 2001 Steven Knight
2 # __FILE__ __REVISION__ __DATE__ __DEVELOPER__
3
4
5                  SCons - a software construction tool
6
7                             Change Log
8
9
10
11 RELEASE 0.02 - Sun, 23 Dec 2001 19:05:09 -0600
12
13   From Charles Crain:
14
15   - Added the Install(), BuildDir(), and Export() methods.
16
17   - Fix the -C option by delaying setting the top of the FS tree.
18
19   - Avoid putting the directory path on the libraries in the LIBS
20     construction variable.
21
22   - Added a GetBuildPath() method to return the full path to the
23     Node for a specified string.
24
25   - Fixed variable substitution in CPPPATH and LIBPATH.
26
27   From Steven Knight:
28
29   - Fixed the version comment in the scons.bat (the UNIX geek used
30     # instead of @rem).
31
32   - Fix to setup.py so it doesn't require a sys.argv[1] argument.
33
34   - Provide make-like warning message for "command not found" and
35     similar errors.
36
37   - Added an EXAMPLES section to the man page.
38
39   - Make Default() targets properly relative to their SConscript
40     file's subdirectory.
41
42   From Anthony Roach:
43
44   - Documented CXXFLAGS, CXXCOM, and CPPPATH.
45
46   - Fixed SCONS_LIB_DIR to work as documented.
47
48   - Made Default() accept Nodes as arguments.
49
50   - Changed Export() to make it easier to use.
51   
52   - Added the Import() and Return() methods.
53
54
55
56 RELEASE 0.01 - Thu Dec 13 19:25:23 CST 2001
57
58 A brief overview of important functionality available in release 0.01:
59
60   - C and C++ compilation on POSIX and Windows NT.
61
62   - Automatic scanning of C/C++ source files for #include dependencies.
63
64   - Support for building libraries; setting construction variables
65     allows creation of shared libraries.
66
67   - Library and C preprocessor search paths.
68
69   - File changes detected using MD5 signatures.
70
71   - User-definable Builder objects for building files.
72
73   - User-definable Scanner objects for scanning for dependencies.
74
75   - Parallel build (-j) support.
76
77   - Dependency cycles detected.
78
79   - Linux packages available in RPM and Debian format.
80
81   - Windows installer available.