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.03 - Fri, 11 Jan 2002 01:09:30 -0600
12
13   From Charles Crain:
14
15   - Performance improvements in the Node.FS and Sig.Calculator classes.
16
17   - Add the InstallAs() method.
18
19   - Execute commands through an external interpreter (sh, cmd.exe, or
20     command.com) to handle redirection metacharacters.
21
22   - Allow the user to supply a command handler.
23
24   From Steven Knight:
25
26   - Search both /usr/lib and /usr/local/lib for scons directories by
27     adding them both to sys.path, with whichever is in sys.prefix first.
28
29   - Fix interpreting strings of multiple white-space separated file names
30     as separate file names, allowing prefixes and suffixes to be appended
31     to each individually.
32
33   - Refactor to move CompositeBuilder initialization logic from the
34     factory wrapper to the __init__() method, and allow a Builder to
35     have both an action and a src_builder (or array of them).
36
37   - Refactor BuilderBase.__call__() to separate Node creation/lookup
38     from initialization of the Node's builder information.
39
40   - Add a CFile Builder object that supports turning lex (.l) and
41     yacc (.y) files into .c files.
42
43   - Document: variable interpretation attributes; how to propogate
44     the user's environment variables to executed commands; how to
45     build variants in multiple BuildDirs.
46
47   - Collect String, Dict, and List type-checking in common utility
48     routines so we can accept User{String,Dict,List}s all over.
49
50   - Put the Action factory and classes into their own module.
51
52   - Use one CPlusPlusAction in the Object Builder's action dictionary,
53     instead of letting it create multiple identical instances.
54
55   - Document the Install() and InstallAs() methods.
56
57   From Steve Leblanc:
58
59   - Require that a Builder be given a name argument, supplying a
60     useful error message when it isn't.
61
62   From Anthony Roach:
63
64   - Add a "duplicate" keyword argument to BuildDir() that can be set
65     to prevent linking/copying source files into build directories.
66
67   - Add a "--debug=tree" option to print an ASCII dependency tree.
68
69   - Fetch the location of the Microsoft Visual C++ compiler(s) from
70     the Registry, instead of hard-coding the location.
71     
72   - Made Scanner objects take Nodes, not path names.
73     
74   - Have the C Scanner cache the #include file names instead of
75     (re-)scanning the file each time it's called.
76
77   - Created a separate class for parent "nodes" of file system roots,
78     eliminating the need for separate is-parent-null checks everywhere.
79     
80   - Removed defined __hash__() and __cmp() methods from FS.Entry, in
81     favor of Python's more efficient built-in identity comparisons.
82
83
84
85 RELEASE 0.02 - Sun, 23 Dec 2001 19:05:09 -0600
86
87   From Charles Crain:
88
89   - Added the Install(), BuildDir(), and Export() methods.
90
91   - Fix the -C option by delaying setting the top of the FS tree.
92
93   - Avoid putting the directory path on the libraries in the LIBS
94     construction variable.
95
96   - Added a GetBuildPath() method to return the full path to the
97     Node for a specified string.
98
99   - Fixed variable substitution in CPPPATH and LIBPATH.
100
101   From Steven Knight:
102
103   - Fixed the version comment in the scons.bat (the UNIX geek used
104     # instead of @rem).
105
106   - Fix to setup.py so it doesn't require a sys.argv[1] argument.
107
108   - Provide make-like warning message for "command not found" and
109     similar errors.
110
111   - Added an EXAMPLES section to the man page.
112
113   - Make Default() targets properly relative to their SConscript
114     file's subdirectory.
115
116   From Anthony Roach:
117
118   - Documented CXXFLAGS, CXXCOM, and CPPPATH.
119
120   - Fixed SCONS_LIB_DIR to work as documented.
121
122   - Made Default() accept Nodes as arguments.
123
124   - Changed Export() to make it easier to use.
125   
126   - Added the Import() and Return() methods.
127
128
129
130 RELEASE 0.01 - Thu Dec 13 19:25:23 CST 2001
131
132 A brief overview of important functionality available in release 0.01:
133
134   - C and C++ compilation on POSIX and Windows NT.
135
136   - Automatic scanning of C/C++ source files for #include dependencies.
137
138   - Support for building libraries; setting construction variables
139     allows creation of shared libraries.
140
141   - Library and C preprocessor search paths.
142
143   - File changes detected using MD5 signatures.
144
145   - User-definable Builder objects for building files.
146
147   - User-definable Scanner objects for scanning for dependencies.
148
149   - Parallel build (-j) support.
150
151   - Dependency cycles detected.
152
153   - Linux packages available in RPM and Debian format.
154
155   - Windows installer available.