diff options
author | Steven Knight <knight@baldmt.com> | 2003-02-11 16:27:28 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-02-11 16:27:28 (GMT) |
commit | a2960be7a116f6e085a1072123976b1b31b09f1b (patch) | |
tree | 5392efc2d04d749bc0fe103da5a6babc6405147f /src | |
parent | cbdfec6a46616c1d2dd0451a3a831db61ea76910 (diff) | |
download | SCons-a2960be7a116f6e085a1072123976b1b31b09f1b.zip SCons-a2960be7a116f6e085a1072123976b1b31b09f1b.tar.gz SCons-a2960be7a116f6e085a1072123976b1b31b09f1b.tar.bz2 |
Initialize the 0.12 branch
Diffstat (limited to 'src')
-rw-r--r-- | src/CHANGES.txt | 4 | ||||
-rw-r--r-- | src/RELEASE.txt | 46 | ||||
-rw-r--r-- | src/setup.py | 4 |
3 files changed, 8 insertions, 46 deletions
diff --git a/src/CHANGES.txt b/src/CHANGES.txt index 25e5d67..a696a2d 100644 --- a/src/CHANGES.txt +++ b/src/CHANGES.txt @@ -8,6 +8,10 @@ +RELEASE 0.12 - XXX + + + RELEASE 0.11 - Tue, 11 Feb 2003 05:24:33 -0600 From Chad Austin: diff --git a/src/RELEASE.txt b/src/RELEASE.txt index c896dca..535384d 100644 --- a/src/RELEASE.txt +++ b/src/RELEASE.txt @@ -20,9 +20,9 @@ more effectively, please sign up for the scons-users mailing list at: -RELEASE 0.11 - Tue, 11 Feb 2003 05:24:33 -0600 +RELEASE 0.12 - XXX - This is the eleventh alpha release of SCons. Please consult the + This is the twelfth 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.10: @@ -78,48 +78,6 @@ RELEASE 0.11 - Tue, 11 Feb 2003 05:24:33 -0600 If you have defined a strfunction() for a Python function Action, you will need to add a third "env" argument to your function call. - Please note the following important changes since release 0.09: - - - The Scanner interface has been changed to make it easier to - - write user-defined Scanners and to eliminate unnecessary Scanner - calls. This required changing the meaning of the third argument - passed to your user-defined scanner functions. The third argument - was formerly the target node whose build was causing a scan of the - current node specified as the first argument: - - def scanner_function(node, env, target): - - The third argument is now the path of directories that can be - searched for files found during the scan of the current node: - - def scanner_function(node, env, path): - - If you did not actually use the third argument in your scanner - function, which should be the case for most definitions, you do - not need to change your scanner function. (You may, however, wish - to change the name of the third argument from "target" to "path" - to reflect the changed meaning and avoid misleading anyone who - looks at your SConscript files.) - - - The .sconsign file format has been changed from ASCII to a pickled - Python data structure. This improves performance and future - extensibility, but means that the first time you execute SCons - 0.10 on an already-existing source tree built with SCons 0.09 or - earlier, SCons will report for every .sconsign file in the tree: - - SCons warning: Ignoring corrupt .sconsign file: xxx - - These warnings are normal in this situation and can be safely - ignored. - - - The format of all error and warning messages has been made - consistent. All error messages now begin with "scons: ***" - and all warning messages now begin with "scons: warning:". - - - SCons now prints a description of Python functions that are - invoked to build a target. - SCons is developed with an extensive regression test suite, and a rigorous development methodology for continually improving that suite. Because of this, SCons is of sufficient quality that you can use it diff --git a/src/setup.py b/src/setup.py index 33b4cbe..bb6f0ab 100644 --- a/src/setup.py +++ b/src/setup.py @@ -149,7 +149,7 @@ class install_lib(_install_lib): is_win32 = sys.platform == "win32" or args[0] == 'bdist_wininst' prefix = get_scons_prefix(self.install_dir, is_win32) standard_dir = os.path.join(self.install_dir, "SCons") - version_dir = os.path.join(prefix, "scons-0.11") + version_dir = os.path.join(prefix, "scons-__VERSION__") standalone_dir = os.path.join(prefix, "scons") if self.version_lib: # ...but they asked for a version-specific directory. @@ -185,7 +185,7 @@ class install_scripts(_install_scripts): arguments = { 'name' : "scons", - 'version' : "0.11", + 'version' : "__VERSION__", 'packages' : ["SCons", "SCons.Node", "SCons.Optik", |